/* ================= HYDRON DESIGN TOKENS — LIGHT BLUE v2 ================= */
:root {
  --ink: #213A52;
  /* deep blue-slate text */
  --ink-soft: rgba(33, 58, 82, .68);
  --indigo: #3A3480;
  /* brand accent retained */
  --violet: #6C63C7;
  --violet-soft: #EDEBFA;
  --lav: #C9C3EE;
  --bronze: #A18355;
  --paper: #FCFBF9;
  --mist: #F3F6FA;
  --sky: #EAF4FB;
  /* replaces deep/dark section bg */
  --sky-2: #D9EBF6;
  --sky-3: #C4DFF0;
  --ocean: #2E6E93;
  /* accent on sky */
  --aqua: #7FB8D9;
  --lime: #B8D96E;
  --line: rgba(33, 58, 82, .12);
  --line-strong: rgba(33, 58, 82, .2);
  --glass-bg: rgba(255, 255, 255, .44);
  --glass-brd: rgba(255, 255, 255, .7);
  --glass-shadow: 0 18px 44px rgba(46, 110, 147, .16);
  --serif: 'IvyPresto Display', 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 84px;
  --rad: 22px;
  --porcelain: #F7F4EE;
  --porcelain-2: #F2EEE6;
  --mist: #E8F1F8;
  --mist-2: #D9E8F4;
  --deep: #1B1740;



}

@font-face {
  font-family: 'IvyPresto Display';
  font-weight: 400 600;
  font-display: swap;
  src: local('IvyPresto Display');
  /* src:url('/wp-content/uploads/fonts/IvyPrestoDisplay.woff2') format('woff2'); */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.72;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none
}

img,
svg,
canvas,
video {
  max-width: 100%;
  display: block
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit
}

::selection {
  background: var(--ocean);
  color: #fff
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }

  html {
    scroll-behavior: auto
  }
}

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 22px
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em
}

h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  margin-bottom: 26px
}

h3 {
  font-size: clamp(21px, 2vw, 26px)
}

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 640px
}

section {
  position: relative
}

.sec-pad {
  padding: clamp(90px, 11vw, 160px) 0
}

.rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.rv.in {
  opacity: 1;
  transform: none
}

.rv-d1 {
  transition-delay: .08s
}

.rv-d2 {
  transition-delay: .16s
}

.rv-d3 {
  transition-delay: .24s
}

.rv-d4 {
  transition-delay: .32s
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease)
}

.btn-solid {
  background: var(--ocean);
  color: #fff;
  box-shadow: 0 10px 28px rgba(46, 110, 147, .3)
}

.btn-solid:hover {
  transform: translateY(-2px);
  background: #25597a;
  box-shadow: 0 16px 36px rgba(46, 110, 147, .36)
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink)
}

.btn-ghost:hover {
  border-color: var(--ocean);
  color: var(--ocean)
}

.btn .arr {
  transition: transform .35s var(--ease)
}

.btn:hover .arr {
  transform: translateX(4px)
}

:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: 3px;
  border-radius: 6px
}

/* ---- glassmorphism (Glassdrop pattern) ---- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-brd);
  border-radius: var(--rad);
  box-shadow: var(--glass-shadow)
}

.verify-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #FFF7E8;
  border: 1px solid #E8CFA0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: #7A5A22;
  margin-top: 26px;
  max-width: 640px
}

.verify-note b {
  font-weight: 700
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease)
}

.btn-solid {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 10px 28px rgba(58, 52, 128, .28)
}

.btn-solid:hover {
  transform: translateY(-2px);
  background: var(--violet);
  box-shadow: 0 16px 36px rgba(108, 99, 199, .34)
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent
}

.btn-ghost:hover {
  border-color: var(--violet);
  color: var(--violet)
}

.btn-light {
  background: var(--paper);
  color: var(--indigo)
}

.btn-light:hover {
  transform: translateY(-2px)
}

.btn-ghost.on-dark {
  border-color: rgba(252, 251, 249, .35);
  color: var(--paper)
}

.btn-ghost.on-dark:hover {
  border-color: #fff
}

.btn .arr {
  transition: transform .35s var(--ease)
}

.btn:hover .arr {
  transform: translateX(4px)
}

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 6px
}

/* ---- verification banner ---- */
.verify-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #FFF7E8;
  border: 1px solid #E8CFA0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: #7A5A22;
  margin-top: 26px;
  max-width: 640px
}

.verify-note b {
  font-weight: 700
}

/* ================= SPLASH — light ================= */
#splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: linear-gradient(170deg, var(--sky), var(--paper));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 34px;
  transition: opacity .8s var(--ease), visibility .8s
}

#splash.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.sp-drop {
  width: 100px;
  height: 100px
}

.sp-drop .d-fill {
  animation: dropShift 2.6s var(--ease) infinite
}

@keyframes dropShift {
  0% {
    fill: var(--sky-3)
  }

  30% {
    fill: var(--lime)
  }

  60% {
    fill: var(--aqua)
  }

  90%,
  100% {
    fill: var(--violet)
  }
}

.sp-line {
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(19px, 2.4vw, 26px);
  font-style: italic;
  opacity: .85
}

.sp-bar {
  width: min(280px, 60vw);
  height: 2px;
  background: rgba(33, 58, 82, .14);
  border-radius: 2px;
  overflow: hidden
}

.sp-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--lime), var(--aqua), var(--violet));
  transition: width .3s linear
}

.sp-count {
  font-size: 12px;
  letter-spacing: .3em;
  color: rgba(33, 58, 82, .5);
  font-weight: 700
}


/* ================= HEADER — light ================= */
.hy-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), backdrop-filter .45s var(--ease)
}

.hy-bar {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px
}

.hy-logo {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px
}

.hy-logo .dot {
  width: 11px;
  height: 11px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--lime), var(--violet))
}

.hy-nav {
  display: flex;
  gap: 34px
}

.hy-navlink {
  font-size: 14px;
  font-weight: 600;
  color: rgba(33, 58, 82, .72);
  transition: color .3s
}

.hy-navlink:hover {
  color: var(--ocean)
}

.hy-header .btn {
  padding: 12px 24px;
  font-size: 14px
}

.hy-header.scrolled {
  background: rgba(252, 251, 249, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line)
}

@media(max-width:900px) {
  .hy-nav {
    display: none
  }
}

.hy-logo {
  display: flex;
  align-items: center;
}

.hy-logo img {
  height: 55px;
  /* Change as needed */
  width: auto;
  display: block;
}

/* ================= HERO — light blue ================= */
#rippleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .85
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 60px) 0 90px
}

.hero h1 {
  font-size: clamp(46px, 7.2vw, 96px);
  max-width: 11ch
}

.hero h1 em {
  font-style: italic;
  color: var(--ocean)
}

.hero .lede {
  margin: 30px 0 40px
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 26px
}

.trust-item .t-big {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink)
}

.trust-item .t-sub {
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 700
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(33, 58, 82, .5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 38px;
  background: linear-gradient(rgba(33, 58, 82, .55), transparent);
  animation: hintDrop 2.2s var(--ease) infinite
}

@keyframes hintDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  55% {
    transform: scaleY(1);
    transform-origin: top
  }

  56% {
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}


/* ================= HERO WITH IMAGE BACKGROUND ================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #DAEBF6;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, .96) 0%,
      rgba(255, 255, 255, .86) 34%,
      rgba(255, 255, 255, .45) 58%,
      rgba(255, 255, 255, .08) 100%),
    linear-gradient(180deg,
      rgba(218, 235, 246, .12) 0%,
      rgba(252, 251, 249, .35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 60px) 0 90px;
}

.hero h1 {
  font-size: clamp(46px, 7.2vw, 88px);
  max-width: 11ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--ocean);
}

.hero .lede {
  margin: 30px 0 40px;
  max-width: 700px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 26px;
}

.trust-item .t-big {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
}

.trust-item .t-sub {
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(33, 58, 82, .5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 38px;
  background: linear-gradient(rgba(33, 58, 82, .55), transparent);
  animation: hintDrop 2.2s var(--ease) infinite;
}

@keyframes hintDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  55% {
    transform: scaleY(1);
    transform-origin: top;
  }

  56% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media(max-width:760px) {
  .hero {
    min-height: 92svh;
  }

  .hero-overlay {
    background: rgb(218 235 246 / 47%);
  }
}


/* ================= 2. UPGRADE SPLIT ================= */
.upg {
  background: var(--paper)
}

.upg-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center
}

.upg-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line)
}

.upg-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 17px;
  transition: padding-left .4s var(--ease)
}

.upg-row:hover {
  padding-left: 14px
}

.upg-row .st {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700
}

.upg-row .st.done {
  color: var(--ocean)
}

.upg-row .st.wait {
  color: var(--bronze)
}

.upg-row .ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--sky);
  display: grid;
  place-items: center;
  flex: none
}

.upg-row .ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--ocean);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.upg-glass {
  position: relative;
  background: linear-gradient(170deg, var(--sky), var(--sky-2));
  border-radius: calc(var(--rad)*1.6);
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  overflow: hidden
}

.upg-glass .glass-svg {
  width: min(180px, 44%);
  filter: drop-shadow(0 20px 34px rgba(46, 110, 147, .24))
}

.upg-glass .g-water {
  animation: waterBreathe 5s var(--ease) infinite
}

@keyframes waterBreathe {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

.upg-glass figcaption {
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 24px);
  text-align: center;
  font-style: italic;
  color: var(--ocean)
}

.mini-banner b {
  color: var(--ocean);
  font-weight: 500
}

/* ================= 2. UPGRADE SECTION ================= */
.upg {
  position: relative;
  background: url("../images/second-section-bg.png") center center/cover no-repeat;
  padding: 120px 0;
  overflow: hidden;
}

/* Optional dark overlay */
.upg::before {
  content: "";
  position: absolute;
  inset: 0;
}

.upg .wrap {
  position: relative;
  z-index: 2;
}

.upg-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.upg-grid>div {
  max-width: 900px;
}

.upg h2,
.upg .lede,
.upg .eyebrow {
  text-align: center;
  color: #221C4D;
}

.upg .lede {
  max-width: 750px;
  margin: 20px auto 0;
}

.mini-banner {
  margin: 50px auto 0;
  max-width: 800px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #221C4D;
  border: 1px solid rgba(255, 255, 255, .2);
}

.mini-banner b {
  color: #221C4D;
}

/* ================= 3. HABIT CARDS ================= */


/* ================= 3. HABIT — STICKY IMAGE SCROLLER ================= */
/* ================= 3. HABIT — STICKY IMAGE SCROLLER ================= */
/* ================= 3. HABIT SECTION ================= */

.habit {
  background: var(--mist);
}

.habit-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.hab-scroller {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

.hab-visual {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  height: min(72vh, 620px);
  border-radius: calc(var(--rad)*1.4);
  overflow: hidden;
  background: #D9EBF6;
}

.hab-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .7s var(--ease), transform .9s var(--ease);
  background-image: var(--hab-bg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.hab-img.on {
  opacity: 1;
  transform: scale(1);
}

.hab-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.18) 45%,
      rgba(0, 0, 0, 0.58) 100%);
  z-index: 1;
}

.hab-img .hi-cap {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 2;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, .88);
}

.hab-rail {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 10vh, 110px);
  padding: 6vh 0 20vh;
}

.hab-box {
  padding: clamp(28px, 3vw, 42px);
  opacity: .36;
  transform: translateY(10px) scale(.985);
  background: rgba(255, 255, 255, .38);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: var(--rad);
  box-shadow: 0 18px 44px rgba(46, 110, 147, .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    opacity .55s var(--ease),
    transform .55s var(--ease),
    box-shadow .55s var(--ease),
    background .55s var(--ease),
    border-color .55s var(--ease);
}

/* THIS IS THE CARD COLOR CHANGE */
.hab-box.on {
  opacity: 1;
  transform: none;
  border-color: rgba(46, 110, 147, .28);
  box-shadow: 0 28px 60px rgba(46, 110, 147, .22);
}

.hab-box .hb-i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--sky);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background .45s var(--ease), transform .45s var(--ease);
}

.hab-box.on .hb-i {
  background: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(46, 110, 147, .16);
}

.hab-box .hb-i svg {
  width: 22px;
  height: 22px;
  stroke: var(--ocean);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hab-box h3 {
  margin-bottom: 8px;
  color: var(--ink);
}

.hab-box p {
  font-size: 15px;
  color: var(--ink-soft);
}

.center-cta {
  text-align: center;
  margin-top: 56px
}

@media(max-width:900px) {
  .hab-scroller {
    grid-template-columns: 1fr;
  }

  .hab-visual {
    position: relative;
    top: 0;
    height: 300px;
    margin-bottom: 30px;
  }

  .hab-rail {
    gap: 24px;
    padding: 0;
  }

  .hab-box {
    opacity: 1;
    transform: none;
  }
}



/* ================= 4. INDIA MAP — light blue ================= */
/* ---------- WaterHealth Map of India ---------- */
section#watermap {
  background: linear-gradient(180deg, var(--porcelain) 0%, var(--mist) 22%, var(--mist) 78%, var(--porcelain) 100%);

}

section#map {
  padding: 5rem;
}

.map-tds-text {
  margin-top: 22px;
  text-align: center;
  font-size: .8rem;
  color: #6A6588;
}

.map-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: var(--violet);
  color: #fff;
  border: 1px solid var(--violet);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.map-stage {
  position: relative;
  max-width: 760px;
  margin: 0 auto
}

.india-map {
  width: 100%;
  display: block;
  overflow: visible
}

/* States: soft brand blue, hover lifts white like paper */
.state {
  fill: #B9CFE8;
  stroke: #fff;
  stroke-width: 1.1;
  stroke-linejoin: round;
  transition: fill .28s ease, filter .28s ease, stroke .28s ease;
  cursor: pointer;
}

.state:hover,
.state.lift {
  fill: #FFFFFF;
  stroke: var(--ink);
  stroke-width: 1.3;
  filter: drop-shadow(0 10px 18px rgba(34, 26, 82, .35));
}

/* City markers: concentric pulse rings around a dark core */
.city-dot {
  cursor: pointer
}

.city-dot .core {
  fill: var(--violet);
  transition: fill .25s
}

.city-dot .ring {
  fill: none;
  stroke: #fff;
  stroke-width: 2.4
}

.city-dot .pulse {
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.4;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box
}

.city-dot .p1 {
  animation: pulseRing 2.8s ease-out infinite
}

.city-dot .p2 {
  animation: pulseRing 2.8s ease-out infinite 1.4s
}

@keyframes pulseRing {
  0% {
    opacity: .55;
    transform: scale(1)
  }

  100% {
    opacity: 0;
    transform: scale(3.1)
  }
}

.city-dot:hover .core,
.city-dot.active .core {
  fill: var(--lime)
}

@media (prefers-reduced-motion:reduce) {
  .city-dot .pulse {
    animation: none;
    opacity: 0
  }
}

/* Floating tooltip card: dark, brand violet, follows the cursor */
.map-tip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 250px;
  background: linear-gradient(155deg, #2A2160 0%, #1C1642 100%);
  color: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 26px 60px -18px rgba(20, 14, 52, .65);
  opacity: 0;
  transform: translateY(8px) scale(.96);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}

.map-tip.show {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.map-tip .tip-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 2px
}

.map-tip .tip-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0
}

.map-tip .tip-region {
  font-size: .78rem;
  color: #9C94C9;
  margin: 2px 0 0
}

.map-tip .tip-body {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 14px
}

.map-tip .tip-label {
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9C94C9;
  margin: 0
}

.map-tip .tip-stat {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
  margin: 2px 0 0;
  line-height: 1.1
}

.map-tip .tip-bar {
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .14);
  margin-top: 10px;
  overflow: hidden
}

.map-tip .tip-bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  width: 50%;
  background: linear-gradient(90deg, var(--aqua), var(--lime));
  transition: width .4s ease
}

.map-tip .tip-soon {
  font-size: .85rem;
  color: #CFC9EE;
  margin: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 14px
}

.map-hint {
  text-align: center;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 18px 0 26px;
}

.bg-mist {
  background: linear-gradient(180deg, var(--porcelain) 0%, var(--mist) 22%, var(--mist) 78%, var(--porcelain) 100%);
}

@media(max-width:640px) {
  .map-tip {
    width: 210px;
    padding: 16px 18px
  }
}


.map-water {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #F7F4EE;
}

.map-water #water {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.map-water-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

}

.map-water .wrap {
  position: relative;
  z-index: 3;
}

.map-water h2 {
  position: relative;
  z-index: 3;
}




/* ================= 5. MONSOON — light blue ================= */
/* ================= 5. MONSOON ================= */
.mon-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center
}

.mon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0
}

.mon-chip {
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid rgba(252, 251, 249, .22);
  border-radius: 100px;
  padding: 9px 18px;
  color: rgba(252, 251, 249, .85)
}

.alert-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--rad);
  padding: 34px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35)
}

.alert-card .ac-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #B4541E;
  background: #FDEDE3;
  border-radius: 100px;
  padding: 7px 14px;
  margin-bottom: 20px
}

.alert-card .ac-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D96C31;
  animation: pulseDot 1.6s infinite
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.ac-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px
}

.ac-row:last-of-type {
  border-bottom: 0
}

.ac-row .k {
  color: rgba(33, 28, 72, .6)
}

.ac-row .v {
  font-weight: 700
}

.mon-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 24px);
  color: var(--lav);
  margin-top: 26px
}

@media(max-width:960px) {

  .upg-grid,
  .map-grid,
  .mon-inner {
    grid-template-columns: 1fr
  }
}

/* ================= 5. MONSOON ================= */
/* ================= 5. MONSOON SECTION ================= */

.monsoon {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, var(--deep), #232052);
}

/* Rain canvas background */
#rainCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  pointer-events: none;
}

/* Content above rain */
.monsoon .wrap {
  position: relative;
  z-index: 2;
}

/* Top heading layout */
.monsoon-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(38px, 5vw, 70px);
}

.monsoon-left {
  max-width: 720px;
}

.monsoon .eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #C9C3EE;
  margin-bottom: 22px;
}

.monsoon h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
  font-size: clamp(36px, 5vw, 66px);
  color: #fff;
  margin: 0;
}

/* Cards */
.monsoon-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.m-card {
  position: relative;
  min-height: 300px;
  padding: 30px 26px;
  border-radius: 24px;
  background: rgba(252, 251, 249, .08);
  border: 1px solid rgba(252, 251, 249, .16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition:
    transform .45s cubic-bezier(.22, .61, .36, 1),
    background .45s cubic-bezier(.22, .61, .36, 1),
    border-color .45s cubic-bezier(.22, .61, .36, 1),
    box-shadow .45s cubic-bezier(.22, .61, .36, 1);
}

.m-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 55%;
  background: radial-gradient(circle at center, rgba(127, 184, 217, .35), transparent 65%);
  opacity: .65;
  pointer-events: none;
}

.m-card:hover {
  transform: translateY(-8px);
  background: rgba(252, 251, 249, .13);
  border-color: rgba(252, 251, 249, .32);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .24);
}

.m-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(252, 251, 249, .13);
  border: 1px solid rgba(252, 251, 249, .18);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}

.m-card .icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.m-card h3 {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.14;
  color: #fff;
  margin: 0 0 12px;
}

.m-card p {
  position: relative;
  z-index: 2;
  font-size: 15.5px;
  line-height: 1.68;
  color: rgba(252, 251, 249, .72);
  margin: 0;
}

/* Button spacing */
.monsoon .btn-light {
  background: #FCFBF9;
  color: #3A3480;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.monsoon .btn-light:hover {
  transform: translateY(-2px);
}

/* Mobile */
@media(max-width:1000px) {
  .monsoon-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .monsoon-top {
    display: block;
  }

  .monsoon-cards {
    grid-template-columns: 1fr;
  }

  .m-card {
    min-height: auto;
  }
}




/* ================= 6. WATERHEALTH TEST ================= */
.wht {
  background: var(--paper);
}

.wht-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.wht-visual {
  overflow: hidden;
  border-radius: 25px;
  position: relative;
  width: 100%;
  height: 620px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.machine-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


@media(max-width:960px) {
  .wht-grid {
    grid-template-columns: 1fr;
  }

  .wht-visual {
    min-height: 360px;
  }

  .wht-visual img {
    min-height: 360px;
  }
}

/* ================= 8. CHECKS — 3D SCAN CAROUSEL ================= */
/* ================= 8. CHECKS SECTION ================= */

/* ================= WATER CANVAS FOR SIX CHECKS SECTION ================= */



.checks {
  --ink: #213A52;
  --ink-soft: rgba(33, 58, 82, .68);
  --paper: #FCFBF9;
  --sky: #EAF4FB;
  --sky-2: #D9EBF6;
  --sky-3: #C4DFF0;
  --ocean: #2E6E93;
  --violet: #6C63C7;
  --lime: #B8D96E;
  --line: rgba(33, 58, 82, .12);
  --line-strong: rgba(33, 58, 82, .2);
  --glass-bg: rgba(255, 255, 255, .44);
  --glass-brd: rgba(255, 255, 255, .7);
  --glass-shadow: 0 18px 44px rgba(46, 110, 147, .16);
  --rad: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.checks .wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
}

.checks.sec-pad {
  padding: clamp(90px, 11vw, 160px) 0;
}

.checks .eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 22px;
}

.checks h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em;
  font-size: clamp(34px, 4.4vw, 58px);
  margin-bottom: 26px;
  color: var(--ink);
}

.checks h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em;
  font-size: clamp(21px, 2vw, 26px);
  color: var(--ink);
}

.checks .lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 640px;
}

.checks .glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-brd);
  border-radius: var(--rad);
  box-shadow: var(--glass-shadow);
}

/* reveal animation */
.checks .rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.checks .rv.in {
  opacity: 1;
  transform: none;
}

.checks .rv-d1 {
  transition-delay: .08s;
}

.checks .rv-d2 {
  transition-delay: .16s;
}

/* scan carousel */
.scan-stage {
  position: relative;
  margin: 64px auto 30px;
  max-width: 980px;
  height: 490px;
  perspective: 1400px;
}

.scan-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(340px, 78vw);
  height: 100%;
  transform-style: preserve-3d;
  transition:
    transform .8s var(--ease),
    opacity .8s var(--ease),
    filter .8s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 26px;
  cursor: pointer;
}

.scan-card[data-pos="0"] {
  transform: translateX(-50%) translateZ(0);
  z-index: 5;
  opacity: 1;
  cursor: default;
}

.scan-card[data-pos="-1"] {
  transform: translateX(-118%) rotateY(32deg) translateZ(-160px);
  z-index: 3;
  opacity: .55;
  filter: blur(1px);
}

.scan-card[data-pos="1"] {
  transform: translateX(18%) rotateY(-32deg) translateZ(-160px);
  z-index: 3;
  opacity: .55;
  filter: blur(1px);
}

.scan-card[data-pos="-2"] {
  transform: translateX(-165%) rotateY(40deg) translateZ(-320px);
  z-index: 1;
  opacity: .22;
  filter: blur(2px);
}

.scan-card[data-pos="2"] {
  transform: translateX(62%) rotateY(-40deg) translateZ(-320px);
  z-index: 1;
  opacity: .22;
  filter: blur(2px);
}

.scan-card .sc-label {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 16px;
}

.scan-glass {
  position: relative;
  width: 130px;
  flex: none;
}

.scan-glass svg {
  width: 100%;
  display: block;
}

.scan-beam {
  position: absolute;
  left: -8%;
  width: 116%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--ocean), transparent);
  box-shadow: 0 0 18px 4px rgba(46, 110, 147, .5);
  opacity: 0;
  top: 0;
}

.scan-card.scanning .scan-beam {
  opacity: 1;
  animation: beamSweep 1.6s var(--ease) forwards;
}

@keyframes beamSweep {
  0% {
    top: 0;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.scan-data {
  width: 100%;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.scan-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid var(--glass-brd);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.scan-card.scanned .scan-row {
  opacity: 1;
  transform: none;
}

.scan-card.scanned .scan-row:nth-child(1) {
  transition-delay: .1s;
}

.scan-card.scanned .scan-row:nth-child(2) {
  transition-delay: .25s;
}

.scan-card.scanned .scan-row:nth-child(3) {
  transition-delay: .4s;
}

.scan-row .k {
  color: var(--ink-soft);
  font-weight: 600;
}

.scan-row .v {
  font-weight: 700;
  color: var(--ink);
}

.scan-status {
  margin-top: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  text-align: center;
  color: var(--ocean);
  opacity: 0;
  transition: opacity .6s var(--ease) .6s;
}

.scan-card.scanned .scan-status {
  opacity: 1;
}

.scan-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.scan-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--ocean);
  background: rgba(255, 255, 255, .6);
  transition: all .3s var(--ease);
  cursor: pointer;
}

.scan-btn:hover {
  background: var(--ocean);
  color: #fff;
  border-color: var(--ocean);
}

/* bottom cards */
.checks .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 56px;
}

.checks .b-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 34px 30px;
  transition:
    transform .5s var(--ease),
    box-shadow .5s var(--ease),
    border-color .5s var(--ease);
}

.checks .b-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(46, 110, 147, .12);
  border-color: var(--sky-3);
}

.checks .b-card .bi {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--sky);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.checks .b-card .bi svg {
  width: 22px;
  height: 22px;
  stroke: var(--ocean);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checks .b-card h3 {
  margin-bottom: 10px;
}

.checks .b-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.checks .center-cta {
  text-align: center;
  margin-top: 56px;
}

.checks .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    background .35s var(--ease),
    color .35s var(--ease),
    border-color .35s var(--ease);
}

.checks .btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.checks .btn-ghost:hover {
  border-color: var(--ocean);
  color: var(--ocean);
  transform: translateY(-2px);
}

.checks .btn .arr {
  transition: transform .35s var(--ease);
}

.checks .btn:hover .arr {
  transform: translateX(4px);
}

/* mobile */
@media(max-width:720px) {
  .scan-stage {
    height: 510px;
    overflow: hidden;
  }

  .scan-card[data-pos="-2"],
  .scan-card[data-pos="2"] {
    opacity: 0;
    pointer-events: none;
  }

  .scan-card[data-pos="-1"] {
    transform: translateX(-96%) rotateY(28deg) translateZ(-140px);
  }

  .scan-card[data-pos="1"] {
    transform: translateX(-4%) rotateY(-28deg) translateZ(-140px);
  }

  .checks .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================= 9. MACHINE — left copy + right video ================= */
.machine {
  background: linear-gradient(175deg, var(--sky), var(--sky-2))
}

.mach-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  margin-top: 10px
}

.mach-copy {
  text-align: left
}

.mach-steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-top: 40px
}

.mach-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line)
}

.mach-step .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ocean);
  letter-spacing: .16em;
  padding-top: 4px;
  flex: none;
  width: 34px
}

.mach-step h3 {
  margin-bottom: 6px;
  font-size: 19px
}

.mach-step p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 440px
}

.mach-video-sticky {
  position: sticky;
  top: calc(var(--header-h) + 30px)
}

.mach-video {
  position: relative;
  aspect-ratio: 9/12;
  border-radius: calc(var(--rad)*1.4);
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center
}

.mach-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain
}

.mach-video .mv-empty {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 30px
}

.mach-video .mv-play {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-brd);
  display: grid;
  place-items: center;
  box-shadow: var(--glass-shadow)
}

.mach-video .mv-play svg {
  width: 24px;
  height: 24px;
  fill: var(--ocean);
  margin-left: 4px
}

.mach-video .mv-label {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft)
}

.mach-video .mv-note {
  font-size: 13px;
  color: rgba(33, 58, 82, .5);
  max-width: 280px
}

/* ================= 10. LOGO STORY — scroll stack ================= */
.logostory {
  background: var(--paper)
}

.ls-head {
  max-width: 720px
}

.stack {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0
}

.stack-card {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
  padding: clamp(30px, 4vw, 54px);
  min-height: 280px
}

.stack-card:nth-child(1) {
  top: calc(var(--header-h) + 40px)
}

.stack-card:nth-child(2) {
  top: calc(var(--header-h) + 58px)
}

.stack-card:nth-child(3) {
  top: calc(var(--header-h) + 76px)
}

.stack-card:nth-child(4) {
  top: calc(var(--header-h) + 94px)
}

.stack-card:nth-child(5) {
  top: calc(var(--header-h) + 112px)
}

.stack-card .sc-num {
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 700;
  color: var(--ocean);
  text-transform: uppercase;
  margin-bottom: 12px
}

.stack-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 10px
}

.stack-card p {
  color: var(--ink-soft);
  max-width: 480px
}

.stack-card .sc-art {
  display: grid;
  place-items: center
}

.stack-card .sc-art svg {
  width: min(170px, 40vw);
  height: auto
}

@media(max-width:760px) {
  .stack-card {
    grid-template-columns: 1fr;
    text-align: center
  }

  .stack-card p {
    margin: 0 auto
  }
}



.maib {
  /* padding-top: 80px; */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 34.34%, #FFFFFF 69.23%, rgba(255, 255, 255, 0) 100%);
  margin-top: 6rem;
}

.maib-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
  text-align: center
}

.maib-logo {
  border-radius: 18px;
  padding: 18px 28px;
  display: grid;
  place-items: center;
  flex: none
}

.maib-logo img {
  width: clamp(120px, 14vw, 168px);
  height: auto;
  display: block;
  filter: grayscale(1) contrast(1.05)
}

.maib-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.maib-line {
  font-family: 'IvyPresto Display', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ink);
  line-height: 1.3
}

.maib-sub {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ocean)
}

@media(max-width:700px) {
  .maib-inner {
    flex-direction: column;
    gap: 22px
  }
}

@media(max-width:700px) {
  .maib-inner {
    flex-direction: column;
    gap: 22px;
  }

  .maib-text {
    order: 1;
    padding-top: 2rem;
  }

  .maib-logo {
    order: 2;
  }

  .maib {
    margin-top: 3rem;
  }
}


/* ================= 11. BODY ================= */
.bodysec {
  background: var(--mist);
}

.body-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-top: 46px;
}

.body-stage {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: calc(var(--rad)*1.6);
  overflow: hidden;
}

.body-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.body-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: clamp(28px, 3vw, 44px);
  min-height: 230px;
  box-shadow: 0 18px 44px rgba(46, 110, 147, .10);
}

.bp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.bp-tab {
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  transition: all .3s var(--ease);
}

.bp-tab.on {
  background: #3A3480;
  color: #fff;
  border-color: #3A3480;
}

.bp-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 10px;
}

.bp-text {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 520px;
}

.bp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--indigo, #3A3480);
  transition: gap .3s var(--ease, ease), color .3s ease;
}

.bp-cta .arr {
  transition: transform .3s var(--ease, ease)
}

.bp-cta:hover {
  color: var(--violet, #6C63C7)
}

.bp-cta:hover .arr {
  transform: translateX(4px)
}

@media(max-width:960px) {
  .body-grid {
    grid-template-columns: 1fr;
  }

  .body-stage {
    min-height: 380px;
  }
}



/* ================= 12. TRIALS — ACCORDION CARDS (glass) ================= */
/* ================= 12. TRIALS — ACCORDION CARDS PRO ================= */
.trials {
  background: linear-gradient(175deg, var(--sky), var(--sky-2));
  overflow: hidden
}

.apro {
  display: flex;
  gap: 8px;
  margin-top: 56px;
  height: 480px
}

.apro-card {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: flex .85s var(--ease)
}

.apro-card.open {
  flex: 4.2;
  cursor: default
}

.apro-bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  transition: transform .9s var(--ease)
}

.apro-card.open .apro-bg {
  transform: scale(1.03)
}

.apro-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 34, 52, .05) 30%, rgba(19, 34, 52, .72) 100%)
}

.apro-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
  background: radial-gradient(360px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, .22), transparent 60%)
}

.apro-card.open .apro-glow {
  opacity: 1
}

.apro-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(22px, 2.6vw, 38px);
  color: #fff
}

.apro-cat {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  display: block;
  margin-bottom: 12px
}

.apro-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.3vw, 32px);
  line-height: 1.15;
  margin-bottom: 12px;
  max-width: 16ch
}

.apro-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  max-width: 380px;
  margin-bottom: 18px
}

.apro-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: 3px
}

/* staggered blur reveal */
.apro-title,
.apro-desc,
.apro-cta {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(14px);
  transition: opacity .6s var(--ease), filter .6s var(--ease), transform .6s var(--ease)
}

.apro-card.open .apro-title {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition-delay: .28s
}

.apro-card.open .apro-desc {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition-delay: .42s
}

.apro-card.open .apro-cta {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition-delay: .56s
}

/* collapsed vertical label */
.apro-vert {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  white-space: nowrap;
  transition: opacity .4s var(--ease);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35)
}

.apro-card.open .apro-vert {
  opacity: 0
}

@media(max-width:860px) {
  .apro {
    flex-direction: column;
    height: auto
  }

  .apro-card {
    flex: none;
    height: 86px;
    transition: height .7s var(--ease)
  }

  .apro-card.open {
    flex: none;
    height: 360px
  }

  .apro-vert {
    position: absolute;
    left: 24px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: horizontal-tb
  }

  .apro-card.open .apro-vert {
    opacity: 0
  }
}


/* make layer order clear */
.apro-bg {
  z-index: 1;
}

.apro-veil {
  z-index: 2;
}

.apro-glow {
  z-index: 3;
}

.apro-vert {
  z-index: 5;
}

.apro-content {
  z-index: 6;
}

/* Icon */
.apro-icon {
  position: absolute;
  top: 42px;
  left: 44px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.86) translateY(-10px);
  pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.apro-icon img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}

.apro-card.open .apro-icon {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: .18s;
}


/* hide icon in closed cards */
.apro-card:not(.open) .apro-icon {
  opacity: 0;
}

/* give content space below icon */
.apro-card.open .apro-content {
  padding-top: 170px;
}

/* mobile */
@media(max-width:860px) {
  .apro-icon {
    top: 24px;
    left: 24px;
    width: 88px;
    height: 88px;
  }

  .apro-icon img {
    width: 56px;
    height: 56px;
  }

  .apro-card.open .apro-content {
    padding-top: 125px;
  }
}

/* ================= 13. QUIZ — FAQ left + PARTICLE DIFFUSER right ================= */
/* ================= FAQ + PARTICLE SECTION ================= */

.quiz {
  background: linear-gradient(180deg, var(--sky-2), var(--sky));
}

.quiz-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-top: 50px;
}

.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
}

.faq-q>span:first-child {
  flex: 1;
}

.faq-q .f-plus {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  display: grid;
  place-items: center;
  color: var(--ocean);
  font-size: 15px;
  flex: none;
  transition:
    transform .4s var(--ease),
    background .4s var(--ease),
    color .4s var(--ease);
}

.faq-item.open .f-plus {
  transform: rotate(45deg);
  background: var(--ocean);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}

.faq-item.open .faq-a {
  max-height: 180px;
}

.faq-a p {
  padding: 0 44px 22px 4px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.quiz-cta {
  text-align: center;
  margin-top: 56px;
}

@media(max-width:760px) {
  .quiz-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-right {
    border-top: 0;
  }

  .faq-q {
    padding: 19px 4px;
  }

  section#map {
    padding: 1rem;
  }

  ul.water-test-list {
    margin-left: 1rem;
  }

  .wht-visual.rv.rv-d2.in {
    height: 150px;
  }
}

/* ================= 13B. INTERACTIVE LOGO DIFFUSER — standalone showcase section ================= */
.diffuse {
  background: radial-gradient(120% 90% at 50% 22%, var(--sky) 0%, var(--paper) 62%);
  text-align: center;
  overflow: hidden
}

.diffuse-wrap {
  display: flex;
  flex-direction: column;
  align-items: center
}

.diffuse h2 {
  max-width: 30ch
}

.diffuse .lede {
  max-width: 850px;
  margin: 0 auto
}

.diffuse .particle-wrap {
  margin-top: -50px
}

.particle-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px
}

.particle-wrap::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 99, 199, .14), rgba(127, 184, 217, .08) 55%, transparent 75%);
  z-index: 0;
  pointer-events: none
}

#particleCanvas {
  position: relative;
  z-index: 1;
  width: min(560px, 90vw);
  aspect-ratio: 1;
  border-radius: calc(var(--rad)*1.4);
  touch-action: none;
  cursor: crosshair
}

.particle-hint {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft)
}

.hero-ctas.rv.rv-d3.diffuser-logo-cta {
  margin-top: 2rem;
}


/* ================= 14. TESTIMONIALS ================= */
/* ================= 14. TESTIMONIALS — light, elevated impact cards ================= */
.quotes {
  background: linear-gradient(180deg, var(--paper), var(--mist))
}

.quotes h2 {
  text-align: center;
  margin: 0 auto 14px
}

.quotes .eyebrow {
  text-align: center
}

.quotes>.wrap>.lede {
  text-align: center;
  margin: 0 auto 10px;
  max-width: 520px
}

.qt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 54px
}

.qt {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--rad)*1.15);
  padding: clamp(30px, 3vw, 40px);
  box-shadow: 0 20px 46px rgba(33, 58, 82, .08);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease)
}

.qt:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(33, 58, 82, .14)
}

.qt .qt-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px
}

.qt .qt-stars svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
  stroke: none
}

.qt blockquote {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 19.5px);
  line-height: 1.55;
  font-style: normal;
  color: var(--ink);
  margin-bottom: 26px
}

.qt figcaption {
  display: flex;
  align-items: center;
  gap: 14px
}

.qt .qt-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  background: linear-gradient(135deg, var(--violet), var(--ocean))
}

.qt .qt-who b {
  display: block;
  font-size: 14.5px;
  color: var(--ink)
}

.qt .qt-who span {
  font-size: 12.5px;
  color: var(--ink-soft)
}

.qt::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  right: 28px;
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: var(--sky-3);
  z-index: 0
}

.qt>* {
  position: relative;
  z-index: 1
}

@media(max-width:760px) {
  .qt-grid {
    grid-template-columns: 1fr
  }
}

/* ================= 15. CLOSING — light blue ================= */
/* ================= CLOSING WATER CANVAS ================= */

.closing {
  background: linear-gradient(168deg, var(--sky-2), var(--sky-3));
  text-align: center;
  overflow: hidden
}

.closing h2 {
  font-size: clamp(38px, 5.6vw, 72px)
}

.rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5
}

.rings span {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(46, 110, 147, .3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringGrow 7s var(--ease) infinite
}

.rings span:nth-child(1) {
  width: 280px;
  height: 280px
}

.rings span:nth-child(2) {
  width: 520px;
  height: 520px;
  animation-delay: 1.6s
}

.rings span:nth-child(3) {
  width: 800px;
  height: 800px;
  animation-delay: 3.2s
}



/* ================= FOOTER ================= */
.footer {
  background: #1C1842;
  color: #fff;
  padding: 60px 0 40px;
  font-size: 14px;
  border-top: 1px solid var(--line)
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center
}

.foot-note {
  font-size: 12px;
  margin-top: 30px;
  max-width: 760px;
  line-height: 1.7;
  color: #fff
}

/* ================= CLOSING WATER CANVAS ================= */

.closing-water {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--ink);
  background: #F7F4EE;
}

.closing-water #water {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.closing-water-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

}

.closing-water .wrap {
  position: relative;
  z-index: 3;
}

.closing-water h2 {
  position: relative;
  z-index: 3;
}

.closing-water .lede {
  margin: 26px auto 0;
  color: var(--text-soft);
}

.closing-water .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* Existing rings, adjusted above canvas */
.closing-water .rings {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.closing-water .rings span {
  position: absolute;
  border-radius: 50%;
}

.closing-water .rings span:nth-child(1) {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
}

.closing-water .rings span:nth-child(2) {
  width: 280px;
  height: 280px;
  bottom: -120px;
  left: -80px;
}

.closing-water .rings span:nth-child(3) {
  width: 160px;
  height: 160px;
  top: 42%;
  left: 10%;
}

@media(max-width:700px) {
  .closing-water {
    min-height: auto;
  }

  .closing-water #water {
    opacity: .85;
  }
}

/* =========================================================
   HYDRON MOBILE RESPONSIVE OVERRIDES
   Paste this at the very bottom of css/homepage.css
   ========================================================= */

/* Tablet and small laptop */
@media (max-width: 1024px) {
  :root {
    --header-h: 74px;
  }

  .wrap,
  .checks .wrap {
    padding-left: clamp(22px, 5vw, 48px);
    padding-right: clamp(22px, 5vw, 48px);
  }

  .sec-pad,
  .checks.sec-pad {
    padding: clamp(74px, 10vw, 110px) 0;
  }

  .hy-bar {
    gap: 18px;
    padding: 0 24px;
  }

  .hy-logo img {
    height: 48px;
  }

  .hy-header .btn {
    padding: 10px 18px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-inner {
    padding: calc(var(--header-h) + 44px) 40px 72px;
  }

  .apro-cat {
    margin-bottom: 52px;
  }

  .machine-video {
    object-position: bottom;
  }

  .wht .wht-visual {
    height: 450px;
  }


  .upg {
    padding: 90px 0;
    background-position: center;
  }


  .mach-wrap {
    grid-template-columns: 1fr;
  }

  .wht-grid {
    gap: 20px;
  }

  .mach-video-sticky,
  .stack-card {
    position: relative;
    top: auto;
  }

  .mach-video {
    max-width: 520px;
    margin: 0 auto;
    height: 330px;
    aspect-ratio: 16/9;
  }

  .body-stage {
    min-height: 420px;
  }

  .qt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Main mobile layout */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
    --rad: 18px;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .wrap,
  .checks .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sec-pad,
  .checks.sec-pad {
    padding: 72px 0;
  }

  .eyebrow,
  .checks .eyebrow,
  .monsoon .eyebrow {
    font-size: 10.5px;
    letter-spacing: .18em;
    margin-bottom: 16px;
  }

  h2,
  .checks h2 {
    font-size: 31px;
    line-height: 1.12;
    margin-bottom: 18px;
  }

  h3,
  .checks h3 {
    font-size: clamp(20px, 6vw, 25px);
  }

  .lede,
  .checks .lede {
    font-size: 16px;
    max-width: 100%;
  }

  .btn,
  .checks .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
  }

  .hy-header {
    height: var(--header-h);
    background: rgba(252, 251, 249, .9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
  }

  .hy-bar {
    padding: 0 18px;
  }

  .hy-logo img {
    height: 42px;
  }

  .hy-nav,
  .hy-header .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-bg-img {
    object-position: 70% center;
  }



  .hero-inner {
    padding: calc(var(--header-h) + 46px) 0 58px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero .lede {
    margin: 22px 0 28px;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
  }

  .apro-cat {
    margin-bottom: 10px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 42px;
    padding-top: 24px;
    gap: 5px;
  }

  .trust-item {
    padding: 10px;
    border: none;
    border-radius: 0px;
    background: none;
  }

  .upg {
    padding: 76px 0;
    background-position: center top;
  }

  .upg-grid,
  .upg-grid>div {
    width: 100%;
    max-width: 100%;
  }

  .upg h2,
  .upg .lede,
  .upg .eyebrow {
    text-align: left;
  }

  .upg .lede {
    margin: 16px 0 0;
  }

  .mini-banner {
    margin-top: 32px;
    padding: 18px 16px;
    border-radius: 16px;
    font-size: 15px;
    text-align: left;
  }

  .habit-head {
    margin-bottom: 36px;
  }

  .hab-visual {
    height: clamp(260px, 72vw, 420px);
    border-radius: 22px;
    margin-bottom: 22px;
  }

  .hab-img {
    background-position: center top;
  }

  .hab-rail {
    gap: 16px;
    padding: 0;
  }

  .hab-box {
    opacity: 1;
    transform: none;
    padding: 24px 22px;
  }

  .center-cta {
    margin-top: 34px;
  }

  section#watermap,
  .bg-mist#watermap {
    padding: 72px 0 !important;
  }

  .section-head,
  #watermap .section-head {
    text-align: left;
  }

  .map-stage {
    max-width: 420px;
    margin-top: 28px;
  }

  .india-map {
    width: 100%;
    max-height: 520px;
  }

  .map-tip {
    width: 190px;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .map-hint {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: .13em;
    margin: 16px 0 22px;
  }

  .monsoon-top {
    display: block;
    margin-bottom: 34px;
  }

  .monsoon-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .m-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .m-card .icon {
    margin-bottom: 18px;
  }

  .wht-visual,
  .wht-visual img {
    min-height: 320px;
  }

  .scan-stage {
    max-width: 100%;
    height: 470px;
    margin-top: 42px;
    overflow: hidden;
  }

  .scan-card {
    width: min(300px, 84vw);
    padding: 26px 22px;
  }

  .scan-card[data-pos="-1"] {
    transform: translateX(-92%) rotateY(24deg) translateZ(-130px);
  }

  .scan-card[data-pos="1"] {
    transform: translateX(-8%) rotateY(-24deg) translateZ(-130px);
  }

  .checks .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 42px;
  }

  .machine-video {
    object-position: center;
  }

  .body-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .checks .b-card {
    padding: 26px 22px;
  }

  .mach-step {
    gap: 16px;
    padding: 20px 0;
  }

  .mach-video {
    aspect-ratio: 4 / 4;
    border-radius: 22px;
    height: 100%;
  }

  .stack {
    margin-top: 36px;
  }

  .stack-card {
    min-height: auto;
    padding: 26px 22px;
    margin-bottom: 18px;
  }

  .body-stage {
    min-height: 340px;
    border-radius: 22px;
  }

  .body-panel {
    padding: 24px 22px;
  }

  .bp-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .bp-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .apro {
    flex-direction: column;
    height: auto;
    gap: 12px;
    margin-top: 40px;
  }

  .apro-card {
    flex: none;
    height: 84px;
    border-radius: 18px;
  }

  .apro-card.open {
    height: 390px;
  }

  .apro-content {
    padding: 22px;
  }

  .apro-card.open .apro-content {
    padding-top: 118px;
  }

  .apro-icon {
    top: 22px;
    left: 22px;
    width: 76px;
    height: 76px;
  }

  .apro-icon img {
    width: 80px;
    height: 80px;
  }

  .apro-vert {
    left: 22px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    writing-mode: horizontal-tb;
    font-size: 12px;
  }

  .faq-q {
    align-items: flex-start;
    padding: 18px 0;
    font-size: 15px;
  }

  .faq-a p {
    padding: 0 0 18px 0;
  }

  .particle-wrap {
    min-height: 280px;
  }

  #particleCanvas {
    width: min(320px, 86vw);
  }

  .qt-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .qt {
    padding: 26px 22px;
  }

  .closing-water .lede {
    max-width: 100% !important;
  }

  .closing-water .hero-ctas {
    flex-direction: column;
  }

  .foot-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

/* Small mobile */
@media (max-width: 480px) {

  .wrap,
  .checks .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sec-pad,
  .checks.sec-pad {
    padding: 62px 0;
  }

  .sp-drop {
    width: 78px;
    height: 78px;
  }

  .sp-line {
    width: min(300px, 84vw);
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(38px, 14vw, 50px);
  }

  .trust-item {
    padding: 0px;
  }

  .trust-item .t-sub {
    font-size: 9.5px;
  }

  .upg {
    padding: 62px 0;
  }

  .hab-visual,
  .wht-visual,
  .body-stage {
    border-radius: 18px;
  }

  .wht-visual,
  .wht-visual img {
    min-height: 260px;
  }

  .scan-stage {
    height: 440px;
  }

  .scan-card {
    width: 88vw;
  }

  .scan-card[data-pos="-1"],
  .scan-card[data-pos="1"],
  .scan-card[data-pos="-2"],
  .scan-card[data-pos="2"] {
    opacity: 0;
    pointer-events: none;
  }

  .mach-step {
    flex-direction: column;
    gap: 8px;
  }

  .mach-step .num {
    width: auto;
  }

  .body-stage {
    min-height: 280px;
  }

  .apro-card.open {
    height: 300px;
  }

  .apro-title {
    max-width: 100%;
  }

  .apro-desc {
    font-size: 14px;
  }

  .closing-water .rings span:nth-child(1) {
    width: 260px;
    height: 260px;
    top: -120px;
    right: -120px;
  }

  .closing-water .rings span:nth-child(2) {
    width: 210px;
    height: 210px;
  }

  .closing-water .rings span:nth-child(3) {
    display: none;
  }

  .closing h2 {
    font-size: 31px;
  }
}

/* ================= MOBILE NAV FIX ================= */

.hy-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  /* border: 1px solid #1C1842; */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 120;
}

.hy-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #1C1842;
  border-radius: 99px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hy-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hy-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.hy-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hy-bar {
    gap: 14px;
  }

  .hy-nav {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border-radius: 22px;
    background: rgba(252, 251, 249, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(33, 58, 82, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 110;
  }

  .hy-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hy-navlink {
    padding: 14px 10px;
    font-size: 15px;
    border-bottom: 1px solid rgba(33, 58, 82, 0.08);
  }

  .hy-navlink:last-child {
    border-bottom: 0;
  }

  .hy-menu-toggle {
    display: inline-flex;
  }

  .hy-header-cta {
    display: none;
  }
}

/* ================= BODY SECTION MOBILE FIX ================= */

@media (max-width: 768px) {
  .bodysec {
    overflow: hidden;
  }

  .bodysec .wrap {
    padding-left: 22px;
    padding-right: 22px;
  }

  .body-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .qt-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .body-stage,
  .body-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .body-stage {
    min-height: 360px;
    border-radius: 24px;
  }

  .body-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .body-panel {
    padding: 28px 22px;
    border-radius: 22px;
    overflow: hidden;
  }

  .bp-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    padding-bottom: 8px;
    margin-bottom: 22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bp-tabs::-webkit-scrollbar {
    display: none;
  }

  .bp-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 20px;
  }

  .bp-title {
    font-size: 30px;
    line-height: 1.15;
  }

  .bp-text {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.65;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .bodysec .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .body-stage {
    min-height: 450px;
  }

  .body-panel {
    padding: 24px 18px;
  }

  .bp-tab {
    font-size: 13.5px;
    padding: 9px 18px;
  }

  .bp-title {
    font-size: 28px;
  }

  .bp-text {
    font-size: 16px;
  }
}

/* ================= MOBILE MAP INFO CARD - SMALLER TEXT ================= */


@media (max-width: 768px) {
  .map-tip {
    padding: 13px 15px !important;
    margin-top: 12px !important;
    border-radius: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .map-tip .tip-title {
    font-size: 18px !important;
    line-height: 1.15 !important;
    margin-bottom: 2px !important;
  }

  .map-tip .tip-tag {
    font-size: 9px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 2px !important;
  }

  .map-tip .tip-region {
    font-size: 11px !important;
    line-height: 1.3 !important;
    margin-top: 2px !important;
  }

  .map-tip .tip-body {
    margin-top: 10px !important;
    padding-top: 10px !important;
  }

  .map-tip .tip-label {
    font-size: 9px !important;
    line-height: 1.25 !important;
    letter-spacing: 0.1em !important;
  }

  .map-tip .tip-stat {
    font-size: 17px !important;
    line-height: 1.15 !important;
    margin-top: 2px !important;
  }

  .map-tip .tip-bar {
    height: 4px !important;
    margin-top: 7px !important;
  }

  .map-tip .tip-soon {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .map-tip {
    padding: 12px 14px !important;
    margin-top: 10px !important;
  }

  .map-tip .tip-title {
    font-size: 16px !important;
  }

  .map-tip .tip-tag {
    font-size: 8px !important;
  }

  .map-tip .tip-region {
    font-size: 10px !important;
  }

  .map-tip .tip-label {
    font-size: 8px !important;
  }

  .map-tip .tip-stat {
    font-size: 15px !important;
  }

  .map-tip .tip-soon {
    font-size: 11px !important;
  }
}

/* ================= MOBILE FIX: INDIA MAP CARD ================= */

@media (max-width: 768px) {

  section#watermap,
  .bg-mist#watermap {
    padding: 72px 0 !important;
    overflow: hidden;
  }

  #watermap .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .map-stage {
    width: 100%;
    max-width: 420px;
    margin: 28px auto 0;
    overflow: visible;
  }

  .india-map {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .map-tip {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: 100% !important;
    max-width: 100% !important;
    margin: 18px auto 0 !important;

    transform: none !important;
    opacity: 0;
    pointer-events: none;

    padding: 16px 18px !important;
    border-radius: 16px !important;
    box-sizing: border-box;
  }

  .map-tip.show {
    opacity: 1;
    transform: none !important;
  }

  .map-hint {
    margin-top: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  #watermap .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .map-tip {
    padding: 14px 15px !important;
  }

  .map-tip .tip-title {
    font-size: 18px !important;
  }

  .map-tip .tip-stat {
    font-size: 17px !important;
  }
}

/* ================= MOBILE ONLY: HABIT IMAGE + TABS CARD ================= */
/* Desktop remains unchanged */

.hab-mobile-card {
  display: none;
}

@media (max-width: 900px) {
  .habit .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .habit-head {
    margin-bottom: 34px;
  }

  .hab-scroller {
    display: block;
  }

  .hab-visual {
    height: auto !important;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    background: #dceaf5;
  }

  .hab-img {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .hab-img .hi-cap {
    display: none;
  }

  /* Hide original vertical cards only on mobile */
  .hab-rail {
    display: none !important;
  }

  .hab-mobile-card {
    display: block;
    width: 100%;
    padding: 28px 22px 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(33, 58, 82, .12);
    box-shadow: 0 18px 44px rgba(46, 110, 147, .12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .hab-mobile-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    margin-bottom: 34px;
  }

  .hab-mobile-tabs::-webkit-scrollbar {
    display: none;
  }

  .hab-mobile-tab {
    flex: 0 0 auto;
    padding: 13px 22px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(33, 58, 82, .18);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
  }

  .hab-mobile-tab.on {
    background: #3a3480;
    border-color: #3a3480;
    color: #fff;
  }

  .hab-mobile-copy h3 {
    font-family: var(--serif);
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.12;
    color: var(--ink);
    margin: 0 0 18px;
  }

  .hab-mobile-copy p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0;
  }
}

@media (max-width: 480px) {
  .habit .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hab-visual {
    height: 285px;
    border-radius: 24px;
  }

  .hab-mobile-card {
    padding: 26px 20px 32px;
    border-radius: 26px;
  }

  .hab-mobile-tab {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hab-mobile-copy h3 {
    font-size: 26px;
  }

  .hab-mobile-copy p {
    font-size: 16px;
  }
}

/* ================= SAME WATER BG: CHECKS + MAP + CLOSING ================= */

.water-bg-section,
.checks,
#watermap,
.closing-water {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #EDF4FA !important;
}

.water-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.water-bg-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(237, 244, 250, .22) 0%,
      rgba(247, 244, 238, .20) 48%,
      rgba(247, 244, 238, .38) 100%);
}

.checks>.wrap,
#watermap>.wrap,
.closing-water>.wrap {
  position: relative;
  z-index: 2;
}

.checks .card-grid,
#watermap .map-stage,
.closing-water .hero-ctas {
  position: relative;
  z-index: 2;
}

/* keep closing text exactly above the canvas */
.closing-water h2,
.closing-water .lede {
  position: relative;
  z-index: 2;
}

/* ================= PERFORMANCE SMOOTHNESS PATCH ================= */

@media (max-width: 768px) {

  .glass,
  .hab-box,
  .checks .glass,
  .body-panel,
  .hab-mobile-card,
  .hy-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .water-bg-canvas {
    opacity: .85;
  }

  .rv {
    transition-duration: .55s !important;
  }
}

/* ================= MOBILE MAP ACTIVE CITY ================= */

.city-dot.active .core {
  fill: var(--violet);
}

.city-dot.active .ring {
  stroke: var(--violet);
  stroke-width: 2;
}

.city-dot.active .pulse {
  opacity: .75;
}


.bold-text {
  font-weight: 800;
  margin-top: 3rem;
}

.fit-sec {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 9vw, 110px) 0
}

.fit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(150deg, #dfe9f2, #c7d6e6);
  background-size: cover;
  background-position: center
}

.fit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0
}

.fit-ph-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(28, 43, 64, .4);
  text-align: center;
  padding: 0 20px
}

/* scrim for text legibility over an unknown real photo — dark, left-weighted */
.fit-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(15, 20, 32, .82) 0%, rgba(15, 20, 32, .58) 45%, rgba(15, 20, 32, .22) 75%, rgba(15, 20, 32, .05) 100%)
}

.fit-sec .wrap {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5vw;
  width: 100%
}

.fit-copy {
  max-width: 560px
}

.fit-copy .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9fd0f0;
  margin-bottom: 18px
}

.fit-copy h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  color: #fff;
  margin-bottom: 20px
}

.fit-copy .fit-lede {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 36px
}

.fit-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px
}

.fit-b {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .18)
}

.fit-benefits .fit-b:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.fit-b .fit-b-i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  flex: none
}

.fit-b .fit-b-i svg {
  width: 21px;
  height: 21px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.fit-b h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 4px
}

.fit-b p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.55
}

.fit-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 100px;
  background: #fff;
  color: #1c2b40;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .3s, box-shadow .3s
}

.fit-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28)
}

.fit-cta .fit-arr {
  transition: transform .3s
}

.fit-cta:hover .fit-arr {
  transform: translateX(4px)
}

@media(max-width:640px) {
  .fit-sec {
    min-height: auto
  }

  .fit-scrim {
    background: linear-gradient(180deg, rgba(15, 20, 32, .3) 0%, rgba(15, 20, 32, .78) 40%, rgba(15, 20, 32, .9) 100%)
  }

  .fit-copy {
    max-width: 100%
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    padding: calc(var(--header-h) + 60px) 20px 90px !important;
  }
}

@media(max-width:1024px) {
  .hero-inner {
    position: relative;
    z-index: 2;
    padding: calc(var(--header-h) + 60px) 55px 90px;
  }
}

/* =========================================
   HABIT SECTION — TABLET DESKTOP SCROLL FIX
   901px to 1024px
========================================= */

@media (min-width: 901px) and (max-width: 1024px) {

  .habit {
    overflow: visible;
  }

  .habit .wrap {
    overflow: visible;
  }

  .hab-scroller {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 36px;
    overflow: visible;
  }

  .hab-visual {
    position: sticky !important;
    top: calc(var(--header-h) + 24px) !important;

    width: 100%;
    height: calc(100vh - var(--header-h) - 48px);
    min-height: 520px;
    max-height: 680px;

    margin: 0;
    align-self: start;

    border-radius: 24px;
    overflow: hidden;
  }

  .hab-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .hab-rail {
    display: flex !important;
    flex-direction: column;
    gap: 70px;
    padding: 4vh 0 16vh;
  }

  .hab-box {
    display: block;
    min-height: 240px;
    padding: 30px;
  }

  .hab-mobile-card {
    display: none !important;
  }

  .hero {
    position: relative;
    min-height: 65svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #DAEBF6;
  }



}

@media (max-width: 600px) {
  .hero-ctas {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .hero .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 40px;
    padding-top: 20px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);

  }

  .hero .trust-item {
    min-width: 0;
    padding: 20px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .hero .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .hero .trust-item:nth-child(3),
  .hero .trust-item:nth-child(4) {
    border-bottom: 0;
  }

  .trust-item .t-big {
    font-size: 19px !important;
  }

  .trust-item .t-sub {
    font-size: 9.5px !important;
    line-height: 1.35;
    margin-top: 4px;
  }
}