:root {
  --ink: #f7fbff;
  --muted: #b8c9df;
  --dim: #7890b2;
  --cyan: #16caff;
  --blue: #128bff;
  --deep: #030816;
  --deep-2: #061432;
  --panel: rgba(8, 28, 62, 0.46);
  --panel-strong: rgba(10, 40, 82, 0.62);
  --line: rgba(64, 183, 255, 0.32);
  --line-bright: rgba(74, 207, 255, 0.74);
  --success: #48f2bd;
  --violet: #7977ff;
  --shadow: 0 28px 90px rgba(0, 8, 28, 0.58);
  --radius: 8px;
  --nav-height: 90px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--deep);
  color: var(--ink);
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 55% 18%, rgba(7, 85, 170, 0.4), transparent 28rem),
    radial-gradient(circle at 84% 56%, rgba(8, 58, 126, 0.4), transparent 32rem),
    linear-gradient(180deg, #030818 0%, #041126 48%, #020713 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  text-rendering: geometricPrecision;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  z-index: -3;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 164, 255, 0.24), transparent 26rem),
    radial-gradient(circle at 20% 8%, rgba(94, 115, 255, 0.12), transparent 22rem),
    linear-gradient(110deg, rgba(3, 7, 20, 0.95), rgba(2, 8, 27, 0.86) 42%, rgba(4, 10, 28, 0.96));
}

body::after {
  z-index: -2;
  opacity: 0.18;
  background-image: url("../assets/noise.svg");
  mix-blend-mode: screen;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(22, 202, 255, 0.32);
  color: white;
}

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

button,
input,
select {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

#ripple-canvas {
  position: fixed;
  inset: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.page-frame {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  border: 1px solid rgba(72, 151, 255, 0.36);
  border-radius: 28px;
  box-shadow: inset 0 0 70px rgba(18, 139, 255, 0.08);
}

.glass-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(30, 92, 155, 0.28), rgba(5, 23, 55, 0.42)),
    rgba(4, 16, 40, 0.34);
  border: 1px solid rgba(69, 181, 255, 0.28);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 164, 255, 0.08),
    var(--shadow);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.glass-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 25%, transparent 72%, rgba(74, 207, 255, 0.08)),
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.22), transparent 42%);
  opacity: 0.72;
}

.glass-panel::after {
  position: absolute;
  inset: auto 12px 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(87, 218, 255, 0.62), transparent);
  opacity: 0.8;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr minmax(245px, 360px);
  align-items: center;
  height: var(--nav-height);
  padding: 22px 50px 18px 44px;
  transition: background 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 10, 29, 0.62);
  box-shadow: 0 16px 56px rgba(0, 10, 32, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 13px;
}

.brand img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 16px rgba(18, 184, 255, 0.62));
}
.brand img.brand-logo-full {
  width: auto;
  height: 58px;
}

.brand strong {
  display: block;
  font-size: 31px;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 5px;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: #9fc6e4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.2vw, 36px);
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
  color: #f5f8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.92;
  transition: color 200ms ease, opacity 200ms ease;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: white;
  opacity: 1;
}

.primary-nav a.active {
  min-width: 74px;
  justify-content: center;
  padding: 0 18px;
  background: rgba(11, 56, 109, 0.4);
  border: 1px solid rgba(44, 144, 255, 0.22);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 28px rgba(0, 24, 66, 0.34);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.icon-link,
.menu-toggle {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #d7eaff;
  border: 0;
  background: transparent;
}

.icon-link svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.6;
}

.menu-toggle {
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #d7eaff;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(77, 201, 255, 0.35);
}

.order-link {
  display: inline-grid;
  place-items: center;
  min-width: 147px;
  min-height: 48px;
  padding: 0 24px;
  color: white;
  background: linear-gradient(135deg, rgba(8, 69, 145, 0.92), rgba(4, 36, 92, 0.7));
  border: 1px solid rgba(22, 202, 255, 0.74);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 34px rgba(0, 105, 255, 0.24);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.order-link:hover {
  transform: translateY(-2px);
  border-color: #8cecff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 18px 48px rgba(0, 149, 255, 0.34);
}

.hero {
  position: relative;
  min-height: max(100svh, 920px);
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 40%, rgba(0, 175, 255, 0.28), transparent 21rem),
    radial-gradient(circle at 47% 59%, rgba(67, 246, 255, 0.15), transparent 18rem),
    radial-gradient(circle at 89% 31%, rgba(29, 98, 188, 0.25), transparent 19rem),
    linear-gradient(180deg, rgba(1, 6, 20, 0.5), rgba(3, 12, 31, 0.4) 52%, rgba(2, 8, 20, 0.96));
}

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

.hero-atmosphere::before {
  position: absolute;
  inset: -12% -8%;
  content: "";
  background:
    radial-gradient(circle at 54% 14%, rgba(35, 160, 255, 0.26) 0 2px, transparent 4px),
    radial-gradient(circle at 67% 34%, rgba(39, 176, 255, 0.3) 0 3px, transparent 6px),
    radial-gradient(circle at 46% 37%, rgba(82, 211, 255, 0.34) 0 2px, transparent 5px),
    radial-gradient(circle at 39% 26%, rgba(18, 137, 255, 0.24) 0 8px, transparent 16px),
    radial-gradient(circle at 62% 24%, rgba(18, 137, 255, 0.16) 0 10px, transparent 20px),
    radial-gradient(circle at 75% 42%, rgba(18, 137, 255, 0.12) 0 18px, transparent 34px);
  filter: blur(0.1px);
  opacity: 0.9;
  animation: driftParticles 16s ease-in-out infinite alternate;
}

.hero-atmosphere::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.46)),
    radial-gradient(ellipse at center bottom, rgba(22, 202, 255, 0.2), transparent 55%);
}

.hero-water {
  position: absolute;
  right: -7%;
  bottom: 188px;
  left: -7%;
  z-index: 1;
  height: 402px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 55% 34%, rgba(118, 235, 255, 0.34) 0 1px, transparent 2px),
    repeating-radial-gradient(ellipse at 55% 37%, rgba(79, 209, 255, 0.52) 0 2px, transparent 4px 18px),
    radial-gradient(ellipse at 55% 36%, rgba(0, 155, 255, 0.36), transparent 26%),
    radial-gradient(ellipse at 55% 62%, rgba(61, 211, 255, 0.3), transparent 40%),
    linear-gradient(180deg, transparent, rgba(1, 12, 31, 0.2) 38%, rgba(0, 11, 28, 0.92));
  filter: saturate(1.3);
  transform: perspective(700px) rotateX(61deg);
  transform-origin: center bottom;
  opacity: 0.68;
  animation: waterBreath 7s ease-in-out infinite alternate;
}

.hero-water::before {
  position: absolute;
  right: -3%;
  bottom: -44px;
  left: -3%;
  height: 145px;
  content: "";
  background:
    radial-gradient(ellipse at 52% 12%, rgba(86, 228, 255, 0.66), transparent 22%),
    linear-gradient(176deg, transparent 0 34%, rgba(18, 181, 255, 0.52) 36%, rgba(152, 244, 255, 0.92) 39%, rgba(20, 177, 255, 0.42) 43%, transparent 48%),
    linear-gradient(182deg, transparent 0 49%, rgba(33, 187, 255, 0.34) 51%, transparent 58%);
  filter: blur(0.3px);
  opacity: 0.92;
}

#three-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

#three-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-copy {
  position: absolute;
  top: 153px;
  left: clamp(48px, 7.2vw, 112px);
  z-index: 5;
  width: min(510px, 40vw);
}

.eyebrow,
.section-heading p,
.journey-title p,
.closing-panel p {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: white;
  font-size: clamp(64px, 5.25vw, 82px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
  color: #22baff;
  text-shadow: 0 0 28px rgba(24, 190, 255, 0.25);
}

.hero-text {
  width: min(390px, 100%);
  margin: 28px 0 34px;
  color: #eef5ff;
  font-size: 16px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 175px;
  min-height: 49px;
  padding: 0 20px 0 28px;
  overflow: hidden;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #13c8ff, #117dff);
  border: 1px solid rgba(108, 229, 255, 0.72);
  box-shadow: 0 18px 48px rgba(0, 146, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary svg {
  padding: 5px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
}

.btn-ghost {
  color: white;
  background: rgba(3, 21, 50, 0.34);
  border: 1px solid rgba(98, 181, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(0, 151, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.feature-panel {
  position: absolute;
  top: 153px;
  right: clamp(68px, 8.6vw, 150px);
  z-index: 5;
  width: 326px;
  border-radius: 18px;
}

.feature-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  min-height: 86px;
  padding: 18px 22px 16px 13px;
  border-bottom: 1px solid rgba(62, 153, 255, 0.22);
  transition: background 200ms ease, transform 200ms ease;
}

.feature-item:last-child {
  border-bottom: 0;
}

.feature-item:hover {
  background: rgba(23, 118, 190, 0.16);
  transform: translateX(-5px);
}

.feature-icon,
.stat-icon,
.journey-step span {
  display: grid;
  place-items: center;
  color: #31caff;
  background:
    radial-gradient(circle at 35% 24%, rgba(146, 240, 255, 0.18), transparent 38%),
    rgba(9, 42, 92, 0.42);
  border: 1px solid rgba(57, 181, 255, 0.38);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(0, 176, 255, 0.1), 0 0 34px rgba(0, 140, 255, 0.18);
}

.feature-icon {
  width: 49px;
  height: 49px;
  font-size: 26px;
}

.feature-item strong {
  display: block;
  margin-bottom: 7px;
  color: #52ccff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-item small {
  display: block;
  color: #d7e4f4;
  font-size: 12px;
  line-height: 1.35;
}

.contact-rail {
  position: absolute;
  top: 337px;
  right: 51px;
  z-index: 6;
  display: grid;
  gap: 21px;
  width: 58px;
  padding: 18px 0;
  border-radius: 21px;
}

.contact-rail a {
  display: grid;
  place-items: center;
  width: 100%;
  color: #d9edff;
  font-size: 22px;
  transition: color 200ms ease, transform 200ms ease;
}

.contact-rail a:hover {
  color: #47d7ff;
  transform: scale(1.12);
}

.stat-grid {
  position: absolute;
  right: clamp(56px, 15.8vw, 254px);
  bottom: 291px;
  left: clamp(56px, 16.4vw, 254px);
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  display: grid;
  grid-template-columns: 57px 1fr;
  align-items: center;
  min-height: 104px;
  padding: 17px 23px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.stat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(118, 235, 255, 0.58);
  box-shadow: 0 32px 90px rgba(0, 151, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.stat-icon {
  width: 58px;
  height: 58px;
  font-size: 31px;
}

.stat-card strong {
  display: block;
  color: white;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.stat-card small {
  display: block;
  margin: 8px 0 6px;
  color: #50d0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.stat-card em {
  display: block;
  color: #e2edf9;
  font-size: 12px;
  font-style: normal;
}

.journey-ribbon {
  position: absolute;
  right: clamp(46px, 7vw, 110px);
  bottom: 49px;
  left: clamp(46px, 7.2vw, 112px);
  z-index: 6;
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  gap: 20px;
}

.journey-title p {
  margin-bottom: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.journey-title h2 {
  margin: 0;
  color: white;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 28px;
  padding-top: 4px;
}

.journey-line::before {
  position: absolute;
  top: 38px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(48, 218, 255, 0.78) 0 4px, transparent 4px 7px),
    linear-gradient(90deg, transparent, rgba(18, 202, 255, 0.7), transparent);
  box-shadow: 0 0 14px rgba(21, 197, 255, 0.52);
}

.journey-line::after {
  position: absolute;
  top: 35px;
  right: 14%;
  left: 14%;
  height: 7px;
  content: "";
  background: radial-gradient(circle, #22d8ff 0 3px, transparent 4px);
  background-size: 25% 7px;
  background-repeat: repeat-x;
  opacity: 0.85;
}

.journey-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  text-align: center;
}

.journey-step span {
  width: 73px;
  height: 73px;
  font-size: 34px;
  background:
    radial-gradient(circle at 45% 35%, rgba(112, 231, 255, 0.2), transparent 40%),
    rgba(8, 41, 91, 0.52);
}

.journey-step strong {
  margin-top: 4px;
  color: #74dcff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.journey-step small {
  color: #bdcadd;
  font-size: 12px;
}

main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 160, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 80% 35%, rgba(71, 242, 189, 0.1), transparent 28rem),
    linear-gradient(180deg, #020713 0%, #04142e 40%, #020713 100%);
}

main::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(30, 198, 255, 0.16), transparent 220px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 90px);
  opacity: 0.65;
}

.section {
  position: relative;
  z-index: 1;
  width: min(1314px, calc(100% - 64px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(340px, 1.3fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  width: min(740px, 100%);
  display: block;
}

.section-heading p {
  margin-bottom: 0;
}

.section-heading h2,
.closing-panel h2 {
  margin: 0;
  color: white;
  font-size: clamp(34px, 4.1vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-height: 332px;
  padding: 27px 20px 24px;
  transform-style: preserve-3d;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.product-card:hover {
  transform: translateY(-10px) rotateX(4deg);
  border-color: rgba(107, 234, 255, 0.58);
  box-shadow: 0 34px 96px rgba(0, 155, 255, 0.22);
}

.product-card::after {
  inset: auto 17px 21px;
}

.product-card span {
  display: block;
  margin-top: 15px;
  color: #55d9ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.product-card h3,
.dashboard-card h3,
.story-step h3 {
  margin: 7px 0 9px;
  color: white;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}

.product-card p,
.dashboard-card p,
.story-step p {
  margin: 0;
  color: #c0cfdf;
  font-size: 13px;
  line-height: 1.45;
}

.bottle,
.dispenser {
  position: relative;
  display: grid;
  place-items: center;
  height: 160px;
  transform: translateZ(24px);
}

.bottle::before {
  width: var(--bottle-w, 48px);
  height: var(--bottle-h, 126px);
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(112, 224, 255, 0.35) 18%, rgba(8, 72, 152, 0.28) 50%, rgba(240, 253, 255, 0.48) 79%, rgba(255, 255, 255, 0.06)),
    radial-gradient(ellipse at 52% 18%, rgba(255, 255, 255, 0.7), transparent 26%),
    linear-gradient(180deg, rgba(148, 239, 255, 0.42), rgba(7, 78, 162, 0.18));
  border: 1px solid rgba(158, 240, 255, 0.72);
  border-radius: 16px 16px 12px 12px;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.18), 0 22px 50px rgba(0, 145, 255, 0.24);
}

.bottle::after {
  position: absolute;
  top: calc(50% - var(--bottle-h, 126px) / 2 - 16px);
  width: calc(var(--bottle-w, 48px) * 0.48);
  height: 22px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.54), rgba(38, 194, 255, 0.46));
  border: 1px solid rgba(168, 245, 255, 0.74);
  border-radius: 7px 7px 3px 3px;
  box-shadow: 0 0 22px rgba(28, 209, 255, 0.38);
}

.bottle-s { --bottle-w: 39px; --bottle-h: 112px; }
.bottle-m { --bottle-w: 45px; --bottle-h: 132px; }
.bottle-l { --bottle-w: 50px; --bottle-h: 145px; }
.bottle-xl { --bottle-w: 72px; --bottle-h: 133px; }
.bottle-jug { --bottle-w: 82px; --bottle-h: 145px; }

.bottle-jug::before {
  border-radius: 24px 24px 14px 14px;
}

.dispenser::before {
  width: 84px;
  height: 132px;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(67, 201, 255, 0.28), rgba(255, 255, 255, 0.1)),
    linear-gradient(180deg, rgba(17, 112, 187, 0.3), rgba(4, 31, 74, 0.72));
  border: 1px solid rgba(111, 222, 255, 0.62);
  border-radius: 12px;
  box-shadow: inset 0 0 24px rgba(107, 218, 255, 0.16), 0 26px 54px rgba(0, 145, 255, 0.22);
}

.dispenser::after {
  position: absolute;
  top: 34px;
  width: 38px;
  height: 22px;
  content: "";
  border: 1px solid rgba(165, 244, 255, 0.8);
  border-radius: 6px;
  box-shadow: 0 38px 0 -8px rgba(44, 203, 255, 0.5), 0 0 22px rgba(34, 203, 255, 0.32);
}

.process-section {
  min-height: 820px;
}

.story-orbit {
  position: absolute;
  top: 80px;
  right: 4%;
  width: 480px;
  height: 480px;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(32, 201, 255, 0.12), transparent 60%),
    repeating-radial-gradient(circle, rgba(73, 213, 255, 0.18) 0 1px, transparent 1px 54px);
  border-radius: 50%;
  filter: blur(0.2px);
  opacity: 0.62;
  animation: slowSpin 34s linear infinite;
}

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

.storyline::before {
  position: absolute;
  top: 50%;
  right: 6%;
  left: 6%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(26, 205, 255, 0.72), rgba(72, 242, 189, 0.5), transparent);
  box-shadow: 0 0 20px rgba(25, 202, 255, 0.42);
}

.story-step {
  min-height: 190px;
  padding: 25px;
  transition: transform 240ms ease, border-color 240ms ease;
}

.story-step:hover {
  transform: translateY(-8px);
  border-color: rgba(72, 242, 189, 0.38);
}

.story-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: #04142e;
  background: linear-gradient(135deg, #74e6ff, #48f2bd);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.dashboard-card {
  min-height: 190px;
  padding: 25px;
  transition: transform 240ms ease, border-color 240ms ease;
}

.dashboard-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116, 230, 255, 0.55);
}

.gauge-card {
  grid-column: span 3;
}

.metric-card {
  grid-column: span 3;
}

.status-card {
  grid-column: span 3;
}

.map-card {
  grid-column: span 7;
  min-height: 350px;
}

.google-map-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 410px;
}

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

.map-card-heading span {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.google-map {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 225px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(90, 209, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 26%, rgba(28, 200, 255, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(3, 17, 42, 0.95), rgba(5, 43, 82, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -26px 52px rgba(0, 123, 255, 0.18),
    0 18px 58px rgba(0, 11, 35, 0.36);
}

.google-map::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 9, 25, 0.08), transparent 42%, rgba(4, 13, 35, 0.24)),
    radial-gradient(circle at 50% 100%, rgba(0, 212, 255, 0.22), transparent 50%);
  mix-blend-mode: screen;
}

.google-map iframe,
.google-map .gm-style {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 225px;
  border: 0;
}

.google-map iframe {
  opacity: 0.78;
}

.map-fallback-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 32%, rgba(55, 215, 255, 0.38), transparent 20%),
    radial-gradient(circle at 24% 70%, rgba(14, 120, 255, 0.32), transparent 26%),
    linear-gradient(145deg, rgba(1, 16, 42, 0.96), rgba(6, 51, 91, 0.7));
}

.map-fallback-scene::before {
  position: absolute;
  inset: -20%;
  content: "";
  background-image:
    linear-gradient(rgba(108, 221, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 221, 255, 0.12) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.45;
  transform: rotate(-11deg) scale(1.25);
}

.map-route-glow {
  position: absolute;
  top: 32%;
  right: 18%;
  left: 19%;
  height: 68px;
  border-bottom: 3px solid rgba(46, 220, 255, 0.9);
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(22, 202, 255, 0.92));
  transform: rotate(-18deg);
}

.map-pin {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(234, 253, 255, 0.94);
  border-radius: 50%;
  background: #16caff;
  box-shadow:
    0 0 0 10px rgba(22, 202, 255, 0.14),
    0 0 24px rgba(22, 202, 255, 0.92);
}

.map-pin::after {
  position: absolute;
  inset: 4px;
  content: "";
  border-radius: inherit;
  background: white;
}

.map-pin-windhoek {
  top: 28%;
  right: 22%;
}

.map-pin-walvis {
  bottom: 24%;
  left: 22%;
}

.map-location-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.map-location-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 72px;
  padding: 14px 15px;
  border: 1px solid rgba(89, 209, 255, 0.25);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(16, 75, 131, 0.44), rgba(3, 19, 47, 0.42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 20, 60, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.map-location-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 229, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 42px rgba(0, 160, 255, 0.18);
}

.map-location-pill strong {
  color: white;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-location-pill span {
  color: #bdd7ee;
  font-size: 12px;
  line-height: 1.45;
}

.map-info-window {
  display: grid;
  gap: 5px;
  max-width: 230px;
  color: #071426;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.map-info-window strong {
  color: #03305a;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-info-window span {
  color: #23445f;
  font-size: 12px;
  line-height: 1.4;
}

.calculator-card {
  grid-column: span 5;
  min-height: 350px;
}

.gauge {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 16px auto 14px;
  border-radius: 50%;
  background:
    conic-gradient(from 205deg, #23d8ff 0 calc(var(--value) * 0.76%), rgba(43, 93, 138, 0.38) 0 76%, transparent 0),
    radial-gradient(circle, rgba(5, 24, 58, 0.92) 0 59%, transparent 60%),
    radial-gradient(circle, rgba(83, 226, 255, 0.24), transparent 70%);
  box-shadow: inset 0 0 30px rgba(25, 204, 255, 0.16), 0 0 44px rgba(0, 152, 255, 0.2);
}

.gauge::after {
  position: absolute;
  inset: 17px;
  content: "";
  border: 1px solid rgba(112, 231, 255, 0.22);
  border-radius: 50%;
}

.gauge::before {
  position: absolute;
  inset: 42px;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 36% 28%, rgba(34, 214, 255, 0.18), transparent 42%),
    rgba(4, 18, 45, 0.9);
  border: 1px solid rgba(104, 227, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 8, 22, 0.45);
}

.gauge span,
.metric-card strong {
  color: white;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.gauge span {
  position: relative;
  z-index: 2;
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 5, 18, 0.76), 0 0 14px rgba(22, 202, 255, 0.32);
}

.metric-card strong {
  display: block;
  margin: 36px 0 22px;
  color: #65ddff;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #d7e6f8;
  font-size: 14px;
}

.status-row span {
  width: 9px;
  height: 9px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--success);
}

.route-map {
  width: 100%;
  height: 260px;
  margin-top: 12px;
  color: #58d9ff;
}

.country {
  fill: rgba(8, 35, 78, 0.38);
  stroke: rgba(98, 204, 255, 0.28);
  stroke-width: 2;
}

.route {
  fill: none;
  stroke-linecap: round;
  stroke-width: 4;
}

.route-shadow {
  stroke: rgba(0, 132, 255, 0.2);
  stroke-width: 14;
  filter: blur(5px);
}

.route-main {
  stroke: url("#none");
  stroke: #4be8ff;
  stroke-dasharray: 12 14;
  animation: routeFlow 2.8s linear infinite;
}

.city circle {
  fill: #0cf;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 2;
  filter: drop-shadow(0 0 12px rgba(31, 210, 255, 0.9));
}

.city text {
  fill: #eaf8ff;
  stroke: none;
  font-size: 18px;
  font-weight: 700;
}

.calculator-card label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #7fdefc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.calculator-card select,
.calculator-card input[type="range"] {
  width: 100%;
}

.calculator-card select {
  min-height: 48px;
  padding: 0 14px;
  color: white;
  background: rgba(4, 22, 53, 0.72);
  border: 1px solid rgba(89, 203, 255, 0.34);
  border-radius: 8px;
  outline: none;
}

.calculator-card input[type="range"] {
  accent-color: var(--cyan);
}

.calc-readout {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.calc-readout span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #06142f;
  background: linear-gradient(135deg, #7cefff, #48f2bd);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.calc-readout strong {
  color: white;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.closing-section {
  padding-top: 50px;
  padding-bottom: 150px;
}

.closing-panel {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 62px 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(74, 207, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(22, 66, 122, 0.48), rgba(5, 19, 48, 0.62));
}

.closing-panel h2 {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

@keyframes driftParticles {
  from { transform: translate3d(-12px, 10px, 0) scale(1); }
  to { transform: translate3d(18px, -16px, 0) scale(1.04); }
}

@keyframes waterBreath {
  from { opacity: 0.55; filter: saturate(1.1) brightness(0.95); }
  to { opacity: 0.76; filter: saturate(1.45) brightness(1.08); }
}

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

@keyframes routeFlow {
  to { stroke-dashoffset: -52; }
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: minmax(230px, 300px) 1fr minmax(210px, 300px);
    padding-inline: 34px;
  }

  .primary-nav {
    gap: 16px;
  }

  .brand strong {
    font-size: 27px;
  }

  .feature-panel {
    right: 74px;
  }

  .contact-rail {
    right: 22px;
  }

  .stat-grid {
    right: 110px;
    left: 110px;
  }

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

@media (max-width: 1080px) {
  :root {
    --nav-height: 82px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    position: fixed;
    top: 92px;
    right: 24px;
    left: 24px;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 18px;
    background: rgba(4, 15, 36, 0.92);
    border: 1px solid rgba(80, 186, 255, 0.28);
    border-radius: 14px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  body.menu-open .primary-nav {
    display: grid;
  }

  .primary-nav a,
  .primary-nav a.active {
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 8px;
  }

  .header-actions {
    gap: 12px;
  }

  .hero {
    min-height: 1230px;
  }

  .hero-copy {
    top: 132px;
    width: min(500px, calc(100% - 48px));
  }

  .feature-panel {
    top: 610px;
    right: 24px;
    left: 24px;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    border-bottom: 1px solid rgba(62, 153, 255, 0.22);
  }

  .contact-rail {
    display: none;
  }

  .stat-grid {
    top: 815px;
    right: 24px;
    bottom: auto;
    left: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-ribbon {
    right: 24px;
    bottom: 42px;
    left: 24px;
    grid-template-columns: 1fr;
  }

  .journey-title h2 {
    font-size: 28px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dashboard-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .gauge-card,
  .metric-card,
  .status-card {
    grid-column: span 2;
  }

  .map-card,
  .calculator-card {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .page-frame {
    border-radius: 18px;
  }

  .site-header {
    padding: 16px 18px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .icon-link {
    display: none;
  }

  .order-link {
    display: none;
  }

  .hero {
    min-height: 2050px;
  }

  .hero-copy {
    top: 112px;
    left: 22px;
    width: calc(100% - 44px);
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 14vw, 72px);
  }

  .hero-text {
    font-size: 15px;
  }

  .cta-row {
    flex-wrap: wrap;
  }

  .btn {
    min-width: 100%;
  }

  .feature-panel {
    top: 670px;
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: 76px;
  }

  .stat-grid {
    top: 1040px;
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 92px;
  }

  .journey-ribbon {
    bottom: 36px;
  }

  .journey-line {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .journey-line::before,
  .journey-line::after {
    display: none;
  }

  .journey-step {
    grid-template-columns: 62px 1fr;
    justify-items: start;
    text-align: left;
  }

  .journey-step span {
    grid-row: span 2;
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .section {
    width: min(100% - 32px, 1314px);
    padding: 72px 0;
  }

  .product-grid,
  .storyline {
    grid-template-columns: 1fr;
  }

  .storyline::before {
    display: none;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .gauge-card,
  .metric-card,
  .status-card,
  .map-card,
  .calculator-card {
    grid-column: auto;
  }

  .route-map {
    height: 220px;
  }

  .calc-readout {
    grid-template-columns: 1fr;
  }
}

/* Waterfall hero upgrade */
.site-header {
  height: 104px;
  padding: 26px 42px 18px 42px;
  background: linear-gradient(180deg, rgba(1, 10, 24, 0.44), rgba(1, 10, 24, 0));
}

.site-header.is-scrolled {
  background: rgba(2, 11, 28, 0.72);
  border-bottom: 1px solid rgba(72, 190, 255, 0.16);
}

.brand img {
  width: 52px;
  height: 52px;
}

.brand strong {
  font-size: 30px;
  letter-spacing: 6px;
}

.primary-nav {
  gap: clamp(18px, 2vw, 34px);
}

.primary-nav a {
  min-height: 40px;
  font-size: 12px;
}

.primary-nav a.active {
  min-width: auto;
  padding: 0 0 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 -2px 0 #16caff, 0 12px 28px rgba(0, 204, 255, 0.22);
  color: #55d9ff;
}

.order-link {
  display: inline-flex;
  gap: 17px;
  min-width: 157px;
  min-height: 49px;
  border-radius: 25px;
  background: linear-gradient(135deg, #12cfff, #0868ff);
  border-color: rgba(125, 234, 255, 0.62);
}

.order-link svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.icon-link {
  width: 48px;
  height: 48px;
  color: #9ceeff;
  background: rgba(9, 50, 95, 0.46);
  border: 1px solid rgba(80, 201, 255, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 28px rgba(0, 159, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero {
  min-height: max(100svh, 1024px);
  background:
    radial-gradient(circle at 67% 32%, rgba(27, 190, 255, 0.34), transparent 26rem),
    radial-gradient(circle at 42% 63%, rgba(11, 91, 169, 0.36), transparent 30rem),
    linear-gradient(90deg, rgba(1, 9, 22, 0.95) 0%, rgba(2, 15, 34, 0.84) 35%, rgba(1, 9, 20, 0.22) 62%, rgba(1, 8, 18, 0.92) 100%),
    linear-gradient(180deg, #020815 0%, #061a34 52%, #020714 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 26%, transparent 68%, rgba(0, 0, 0, 0.32)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 54%, rgba(0, 9, 22, 0.78) 100%);
}

.hero-atmosphere::before {
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 255, 255, 0.55) 0 2px, transparent 4px),
    radial-gradient(circle at 60% 44%, rgba(130, 230, 255, 0.35) 0 3px, transparent 8px),
    radial-gradient(circle at 32% 38%, rgba(63, 188, 255, 0.2) 0 18px, transparent 40px),
    radial-gradient(circle at 70% 54%, rgba(149, 246, 255, 0.22), transparent 16rem),
    radial-gradient(circle at 82% 32%, rgba(0, 120, 255, 0.18), transparent 24rem);
  filter: blur(0.2px);
}

.hero-atmosphere::after {
  background:
    radial-gradient(ellipse at 66% 58%, rgba(218, 252, 255, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(1, 8, 20, 0.52), transparent 30%, transparent 76%, rgba(1, 8, 20, 0.58));
}

#three-stage {
  z-index: 2;
}

.hero-water {
  right: -4%;
  bottom: 168px;
  left: -4%;
  z-index: 3;
  height: 325px;
  opacity: 0.86;
  background:
    radial-gradient(ellipse at 61% 21%, rgba(241, 254, 255, 0.62), transparent 9%),
    radial-gradient(ellipse at 60% 27%, rgba(0, 204, 255, 0.55), transparent 18%),
    repeating-linear-gradient(176deg, transparent 0 13px, rgba(70, 211, 255, 0.13) 15px, transparent 20px),
    linear-gradient(178deg, transparent 0 22%, rgba(13, 108, 197, 0.24) 34%, rgba(0, 203, 255, 0.42) 43%, rgba(1, 13, 33, 0.72) 72%, rgba(0, 5, 14, 0.98) 100%);
  transform: perspective(760px) rotateX(58deg);
  filter: saturate(1.45) brightness(1.08);
}

.hero-water::before {
  right: -2%;
  bottom: -64px;
  left: -2%;
  height: 148px;
  background:
    radial-gradient(ellipse at 58% 9%, rgba(255, 255, 255, 0.78), transparent 16%),
    linear-gradient(176deg, transparent 0 27%, rgba(16, 176, 255, 0.34) 34%, rgba(226, 252, 255, 0.95) 39%, rgba(12, 145, 255, 0.48) 45%, transparent 53%),
    linear-gradient(182deg, transparent 0 54%, rgba(31, 188, 255, 0.62) 55%, rgba(5, 43, 92, 0.32) 64%, transparent 73%);
  opacity: 1;
}

.hero-water::after {
  position: absolute;
  right: 0;
  bottom: 54px;
  left: 0;
  height: 54px;
  content: "";
  background:
    radial-gradient(ellipse at 50% 50%, rgba(245, 254, 255, 0.72), transparent 16%),
    repeating-linear-gradient(178deg, transparent 0 38px, rgba(138, 237, 255, 0.68) 42px, transparent 51px);
  filter: blur(0.5px);
  opacity: 0.72;
}

.hero-copy {
  top: 148px;
  left: clamp(72px, 9.9vw, 152px);
  z-index: 8;
  width: min(520px, 38vw);
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 1.2px;
}

.hero-copy h1 {
  font-size: clamp(70px, 5.6vw, 86px);
  font-weight: 300;
  line-height: 0.98;
}

.hero-copy h1 span {
  color: #079cff;
  text-shadow: 0 0 24px rgba(0, 159, 255, 0.32);
}

.hero-text {
  width: min(390px, 100%);
  margin-top: 25px;
  color: #f4f8ff;
  font-size: 16px;
}

.btn {
  border-radius: 9px;
}

.btn-primary {
  background: linear-gradient(135deg, #0788ff, #16d5ff);
}

.btn-ghost {
  background: rgba(2, 15, 34, 0.28);
  border-color: rgba(191, 232, 255, 0.52);
}

.scroll-rail {
  position: absolute;
  top: 274px;
  left: 48px;
  z-index: 8;
  display: grid;
  justify-items: center;
  gap: 13px;
  color: #63dcff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.scroll-rail span {
  width: 1px;
  height: 80px;
  background: repeating-linear-gradient(180deg, rgba(115, 220, 255, 0.9) 0 3px, transparent 3px 8px);
}

.scroll-rail span:first-child::before,
.scroll-rail span:last-child::after {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: -3.5px;
  content: "";
  background: #baf6ff;
  border-radius: 50%;
  box-shadow: 0 0 16px #19ccff;
}

.scroll-rail span:last-child::after {
  width: 15px;
  height: 15px;
  margin-top: 78px;
  margin-left: -7px;
  background: #041e40;
  border: 2px solid #12cfff;
}

.scroll-rail em {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-style: normal;
}

.feature-panel {
  top: 188px;
  right: 42px;
  z-index: 9;
  width: 272px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(9, 44, 86, 0.56), rgba(4, 16, 35, 0.62)),
    rgba(2, 12, 31, 0.42);
}

.feature-item {
  grid-template-columns: 56px 1fr 18px;
  min-height: 94px;
  gap: 14px;
  padding: 17px 14px 17px 18px;
}

.feature-item::after {
  align-self: center;
  color: #e8fbff;
  content: ">";
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  opacity: 0.88;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background:
    radial-gradient(circle at 35% 24%, rgba(228, 253, 255, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(7, 144, 255, 0.6), rgba(4, 55, 109, 0.52));
  border-color: rgba(56, 194, 255, 0.34);
}

.feature-item strong {
  color: white;
  font-size: 13px;
}

.feature-item small {
  color: #edf7ff;
}

.contact-rail {
  top: 338px;
  right: 28px;
  z-index: 10;
  width: 54px;
  border-radius: 20px;
  background: rgba(4, 25, 55, 0.48);
}

.stat-grid {
  right: clamp(54px, 16.7vw, 272px);
  bottom: 260px;
  left: clamp(54px, 17.7vw, 272px);
  z-index: 9;
  gap: 0;
  padding: 0 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(29, 126, 196, 0.36), rgba(4, 22, 50, 0.62)),
    rgba(3, 18, 42, 0.55);
  border: 1px solid rgba(94, 214, 255, 0.36);
  border-radius: 14px;
  box-shadow:
    0 0 60px rgba(0, 169, 255, 0.22),
    0 30px 90px rgba(0, 7, 23, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.stat-grid::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(36, 215, 255, 0.85), transparent);
  box-shadow: 0 0 22px rgba(32, 209, 255, 0.82);
}

.stat-card.glass-panel {
  min-height: 108px;
  padding: 17px 22px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(106, 214, 255, 0.24);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.stat-card.glass-panel:last-child {
  border-right: 0;
}

.stat-card.glass-panel::before {
  opacity: 0.26;
}

.stat-card.glass-panel::after {
  display: none;
}

.stat-icon,
.journey-step span {
  color: #c9f8ff;
  background:
    radial-gradient(circle at 38% 25%, rgba(255, 255, 255, 0.34), transparent 32%),
    linear-gradient(135deg, rgba(15, 181, 255, 0.55), rgba(6, 52, 105, 0.58));
  border-color: rgba(113, 227, 255, 0.5);
  box-shadow: inset 0 0 22px rgba(0, 181, 255, 0.18), 0 0 32px rgba(0, 177, 255, 0.34);
}

.journey-ribbon {
  right: clamp(48px, 6.2vw, 95px);
  bottom: 27px;
  left: clamp(48px, 6.2vw, 95px);
  z-index: 8;
  grid-template-columns: 345px 1fr;
}

.journey-title p {
  color: #12cfff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.journey-title h2 {
  font-size: 33px;
}

.journey-line::before {
  top: 39px;
  background:
    repeating-linear-gradient(90deg, rgba(205, 246, 255, 0.86) 0 4px, transparent 4px 8px),
    linear-gradient(90deg, transparent, rgba(47, 215, 255, 0.72), transparent);
}

.journey-step span {
  width: 78px;
  height: 78px;
}

main {
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 176, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 86% 32%, rgba(18, 94, 167, 0.24), transparent 32rem),
    linear-gradient(180deg, #020713 0%, #04142e 40%, #020713 100%);
}

@media (max-width: 1320px) {
  .site-header {
    padding-inline: 32px;
  }

  .hero-copy {
    left: clamp(64px, 7vw, 92px);
  }

  .scroll-rail {
    left: 34px;
  }

  .feature-panel {
    right: 32px;
  }

  .stat-grid {
    right: 110px;
    left: 110px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    height: 84px;
  }

  .primary-nav {
    top: 92px;
  }

  .hero {
    min-height: 1310px;
  }

  .hero-copy {
    top: 130px;
    left: 28px;
    width: min(520px, calc(100% - 56px));
  }

  .scroll-rail {
    display: none;
  }

  .feature-panel {
    top: 632px;
    right: 28px;
    left: 28px;
    width: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid {
    top: 862px;
    right: 28px;
    bottom: auto;
    left: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .stat-card.glass-panel:nth-child(2) {
    border-right: 0;
  }

  .journey-ribbon {
    right: 28px;
    bottom: 38px;
    left: 28px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 16px 22px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .header-actions {
    gap: 8px;
    justify-content: flex-end;
  }

  .order-link {
    min-width: 116px;
    min-height: 45px;
    padding: 0 11px 0 13px;
    gap: 8px;
    border-radius: 23px;
    font-size: 10px;
    white-space: nowrap;
  }

  .order-link span {
    white-space: nowrap;
  }

  .order-link svg {
    width: 15px;
    height: 15px;
  }

  .hero {
    min-height: 2050px;
  }

  .hero-copy {
    top: 114px;
    left: 22px;
    width: calc(100% - 44px);
  }

  .hero-copy h1 {
    font-size: clamp(54px, 14.5vw, 76px);
  }

  .hero-water {
    bottom: 470px;
    height: 280px;
  }

  .feature-panel {
    top: 694px;
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: 82px;
  }

  .stat-grid {
    top: 1080px;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .stat-card.glass-panel,
  .stat-card.glass-panel:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(106, 214, 255, 0.22);
  }

  .stat-card.glass-panel:last-child {
    border-bottom: 0;
  }

  .journey-ribbon {
    bottom: 34px;
  }

  .map-location-list {
    grid-template-columns: 1fr;
  }

  .google-map {
    min-height: 245px;
  }
}

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

/* ── Product image cards ───────────────────────────── */
.product-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

/* ── Gallery ───────────────────────────────────────── */
.gallery-section {
  padding-bottom: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
}
.gallery-item:first-child {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ── Contact info grid ─────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 40px auto;
  max-width: 680px;
  text-align: left;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-item svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  stroke: #16caff;
  fill: none;
  stroke-width: 1.8;
  margin-top: 2px;
}
.contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-info-item strong {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #16caff;
}
.contact-info-item a,
.contact-info-item span {
  font-size: 14px;
  color: rgba(200, 235, 255, 0.85);
  text-decoration: none;
  line-height: 1.5;
}
.contact-info-item a:hover {
  color: #fff;
}
.closing-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ── Footer ────────────────────────────────────────── */
.site-footer-bar {
  border-top: 1px solid rgba(72, 190, 255, 0.14);
  padding: 32px 48px;
  background: rgba(1, 8, 20, 0.88);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(150, 210, 255, 0.7);
  text-transform: uppercase;
}
.footer-copy {
  font-size: 12px;
  color: rgba(150, 210, 255, 0.45);
}
.footer-socials {
  display: flex;
  gap: 18px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(80, 201, 255, 0.28);
  color: #9ceeff;
  transition: background 0.25s, color 0.25s;
}
.footer-socials a:hover {
  background: rgba(22, 202, 255, 0.18);
  color: #fff;
}
.footer-socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-column: span 2;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════════════
   DESIGN REFRESH — Cleaner, lighter, more professional
   ═══════════════════════════════════════════════════ */

/* Light section backgrounds */
.product-section {
  background: #f4f8fc;
  color: #0a1628;
}
.product-section .section-heading p {
  color: #0088cc;
}
.product-section .section-heading h2 {
  color: #0a1628;
}

/* White product cards */
.product-section .product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 136, 204, 0.12);
  box-shadow: 0 4px 24px rgba(0, 100, 180, 0.07);
  color: #0a1628;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-section .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 136, 204, 0.15);
}
.product-section .product-card span {
  color: #0088cc;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.product-section .product-card h3 {
  color: #0a1628;
}
.product-section .product-card p {
  color: #4a6080;
}
.product-img-wrap {
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  height: 200px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

/* Process section — white */
.process-section {
  background: #ffffff;
}
.process-section .section-heading p {
  color: #0088cc;
}
.process-section .section-heading h2 {
  color: #0a1628;
}
.process-section .story-step {
  background: #f0f6ff;
  border: 1px solid rgba(0, 136, 204, 0.12);
  color: #0a1628;
}
.process-section .story-step span {
  color: #0088cc;
}
.process-section .story-step h3 {
  color: #0a1628;
}
.process-section .story-step p {
  color: #4a6080;
}

/* Gallery grid fix */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  height: 260px;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Dashboard section subtle light */
.dashboard-section {
  background: #f7fafd;
}
.dashboard-section .section-heading p { color: #0088cc; }
.dashboard-section .section-heading h2 { color: #0a1628; }
.dashboard-section .dashboard-card {
  background: #ffffff;
  border: 1px solid rgba(0, 136, 204, 0.1);
  box-shadow: 0 2px 16px rgba(0, 100, 180, 0.06);
  color: #0a1628;
}
.dashboard-section .dashboard-card h3 { color: #0a1628; }
.dashboard-section .dashboard-card p  { color: #4a6080; }
.dashboard-section .dashboard-card strong { color: #0a1628; }
.dashboard-section .gauge span { color: #0a1628; }
.dashboard-section .status-row { color: #4a6080; }
.dashboard-section .status-row span { background: #22c55e; }

/* Map card in light mode */
.google-map-card {
  background: #ffffff !important;
}
.map-card-heading span { color: #0088cc; }
.map-card-heading h3   { color: #0a1628; }
.map-location-pill {
  background: #f0f6ff;
  border: 1px solid rgba(0, 136, 204, 0.15);
  color: #0a1628;
}
.map-location-pill strong { color: #0088cc; }
.map-location-pill span   { color: #4a6080; }

/* Contact section — clean dark navy */
.closing-section {
  background: linear-gradient(160deg, #020d1e 0%, #041832 60%, #020d1e 100%);
}

/* Closing panel cleanup */
.closing-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
}
.closing-panel > p {
  color: #16caff;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}
.closing-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 40px;
}

/* Footer */
.site-footer-bar {
  background: #020a18;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 36px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(200, 230, 255, 0.55);
  text-transform: uppercase;
}
.footer-copy {
  font-size: 12px;
  color: rgba(200, 230, 255, 0.3);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(200,230,255,0.6);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.footer-socials a:hover {
  background: rgba(22,202,255,0.15);
  border-color: rgba(22,202,255,0.4);
  color: #fff;
}
.footer-socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* Section heading refinements */
.section-heading p {
  letter-spacing: 3px;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Journey ribbon — keep dark but refine */
.journey-ribbon {
  background: linear-gradient(180deg, rgba(2,12,28,0.0) 0%, rgba(2,14,32,0.92) 100%);
}

/* Smoother button styles */
.btn {
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 14px 32px;
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* Responsive for light sections */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
  .gallery-item { height: 200px; }
  .closing-panel { padding: 40px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   COLOUR ROLLBACK — Deep navy glass, not white
   ═══════════════════════════════════════════════════ */

/* Products — dark navy, not white */
.product-section {
  background: linear-gradient(180deg, #020d1e 0%, #041428 100%) !important;
  color: #e8f4ff !important;
}
.product-section .section-heading p { color: #16caff !important; }
.product-section .section-heading h2 { color: #e8f4ff !important; }
.product-section .product-card {
  background: rgba(8, 28, 60, 0.72) !important;
  border: 1px solid rgba(22, 202, 255, 0.14) !important;
  box-shadow: 0 4px 32px rgba(0, 80, 160, 0.18) !important;
  color: #e8f4ff !important;
  backdrop-filter: blur(12px) !important;
}
.product-section .product-card:hover {
  border-color: rgba(22, 202, 255, 0.32) !important;
  box-shadow: 0 12px 48px rgba(0, 140, 255, 0.22) !important;
  transform: translateY(-6px) !important;
}
.product-section .product-card span { color: #16caff !important; }
.product-section .product-card h3   { color: #e8f4ff !important; }
.product-section .product-card p    { color: rgba(180, 215, 255, 0.72) !important; }

/* Process — dark with subtle blue tint */
.process-section {
  background: linear-gradient(180deg, #041428 0%, #020d1e 100%) !important;
}
.process-section .section-heading p { color: #16caff !important; }
.process-section .section-heading h2 { color: #e8f4ff !important; }
.process-section .story-step {
  background: rgba(6, 22, 50, 0.8) !important;
  border: 1px solid rgba(22, 202, 255, 0.12) !important;
  color: #e8f4ff !important;
}
.process-section .story-step span { color: #16caff !important; }
.process-section .story-step h3 { color: #e8f4ff !important; }
.process-section .story-step p  { color: rgba(180, 215, 255, 0.65) !important; }

/* Dashboard — dark, not light grey */
.dashboard-section {
  background: linear-gradient(180deg, #020d1e 0%, #030f22 100%) !important;
}
.dashboard-section .section-heading p { color: #16caff !important; }
.dashboard-section .section-heading h2 { color: #e8f4ff !important; }
.dashboard-section .dashboard-card {
  background: rgba(6, 22, 52, 0.75) !important;
  border: 1px solid rgba(22, 202, 255, 0.12) !important;
  box-shadow: 0 4px 24px rgba(0, 60, 140, 0.18) !important;
  color: #e8f4ff !important;
  backdrop-filter: blur(14px) !important;
}
.dashboard-section .dashboard-card h3    { color: #e8f4ff !important; }
.dashboard-section .dashboard-card p     { color: rgba(180,215,255,0.65) !important; }
.dashboard-section .dashboard-card strong { color: #16caff !important; }
.dashboard-section .gauge span { color: #16caff !important; }
.dashboard-section .status-row { color: rgba(180,215,255,0.75) !important; }
.google-map-card { background: rgba(6,22,52,0.75) !important; }
.map-card-heading span { color: #16caff !important; }
.map-card-heading h3   { color: #e8f4ff !important; }
.map-location-pill {
  background: rgba(4, 16, 38, 0.8) !important;
  border: 1px solid rgba(22,202,255,0.18) !important;
  color: #e8f4ff !important;
}
.map-location-pill strong { color: #16caff !important; }
.map-location-pill span   { color: rgba(180,215,255,0.65) !important; }

/* Gallery section — dark background so images pop */
.gallery-section {
  background: #020a18 !important;
}
.gallery-section .section-heading p { color: #16caff; }
.gallery-section .section-heading h2 { color: #e8f4ff; }
.gallery-item {
  border-radius: 18px;
  height: 260px;
  overflow: hidden;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2,10,28,0.45) 100%);
  pointer-events: none;
}

/* ── Animation support ───────────────────────────── */
.gallery-item {
  clip-path: inset(100% 0% 0% 0%);
  will-change: clip-path, opacity;
}
.gallery-item img {
  transform: scale(1.14);
  will-change: transform;
}
.product-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.journey-line::before {
  background:
    linear-gradient(90deg, rgba(48,218,255,0.78) var(--line-progress, 100%), transparent var(--line-progress, 100%)),
    linear-gradient(90deg, transparent, rgba(18,202,255,0.7), transparent);
  transition: none;
}

/* ── Fix: remove hidden clip-path so gallery shows without GSAP ── */
.gallery-item {
  clip-path: none !important;
  opacity: 1 !important;
}
.gallery-item img {
  transform: scale(1.0) !important;
}

/* ── Fix: section heading layout (label above, heading below) ── */
.section-heading {
  display: block !important;
  text-align: center !important;
  max-width: 760px;
  margin: 0 auto;
}
.section-heading p,
.section-heading h2 {
  display: block !important;
  text-align: center !important;
}

/* ── Page Loader ─────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #010915;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: loaderPulse 1.6s ease-in-out infinite alternate;
}
.loader-logo img {
  width: 48px;
  height: 48px;
}
.loader-logo span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 7px;
  color: #e8f4ff;
}
.loader-bar {
  width: 180px;
  height: 2px;
  background: rgba(22, 202, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0868ff, #16caff);
  border-radius: 2px;
  animation: loaderFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
@keyframes loaderPulse {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

/* ── Stable initial states (prevent GSAP flash) ─── */
/* Elements start visible; GSAP overrides only after load */
.brand, .primary-nav a, .header-actions > *,
.hero-copy .eyebrow, .hero-copy h1, .hero-text,
.cta-row .btn, .feature-panel, .stat-card,
.journey-title, .journey-step,
.product-card, .story-step, .dashboard-card,
.gallery-item, .contact-info-item, .closing-cta-row .btn {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}
/* Only hide if body has js-loaded class — set by loader script */
body.js-animating .product-card,
body.js-animating .story-step,
body.js-animating .dashboard-card,
body.js-animating .gallery-item,
body.js-animating .contact-info-item {
  opacity: 0;
  transform: translateY(28px);
}

/* ── Section headings: dead center, always ─────────── */
.section-heading,
.section-heading.narrow {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 52px !important;
  gap: 10px !important;
}
.section-heading p,
.section-heading h2 {
  text-align: center !important;
  width: 100% !important;
}

/* ══════════════════════════════════════════════
   PRE-LAUNCH STABILISATION
   ══════════════════════════════════════════════ */

/* Sections need full-width backgrounds — override the
   constrained width on the wrapper but keep content centered */
#products, #process, #dashboard,
.gallery-section, #contact {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Re-apply inner padding via a content wrapper feel */
#products .section-heading,
#products .product-grid,
#process .section-heading,
#process .storyline,
#dashboard .section-heading,
#dashboard .dashboard-grid,
.gallery-section .section-heading,
.gallery-section .gallery-grid,
#contact .closing-panel {
  max-width: min(1314px, calc(100% - 64px));
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
/* Section vertical rhythm */
#products  { padding: 96px 0 !important; }
#process   { padding: 96px 0 !important; }
#dashboard { padding: 96px 0 !important; }
.gallery-section { padding: 96px 0 0 !important; }
#contact   { padding: 96px 48px !important; }

/* Gallery grid — single source of truth */
.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  margin-top: 48px !important;
}
.gallery-item {
  height: 260px !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  opacity: 1 !important;
  clip-path: none !important;
}
.gallery-item--wide {
  grid-column: span 2 !important;
}
.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Closing panel width */
.closing-panel {
  max-width: 820px;
  margin: 0 auto;
}

/* Remove any stray transform that could cause blur on load */
.product-card,
.story-step,
.dashboard-card {
  transform: none;
  will-change: auto;
}

/* Smooth section colour transitions */
#products  { background: linear-gradient(180deg, #020d1e 0%, #041428 100%); }
#process   { background: linear-gradient(180deg, #041428 0%, #020d1e 100%); }
#dashboard { background: #020d1e; }
.gallery-section { background: #020a18; }

@media (max-width: 1080px) {
  .gallery-grid { grid-template-columns: 1fr 1fr !important; }
  .gallery-item--wide { grid-column: span 2 !important; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr !important; }
  .gallery-item--wide { grid-column: span 1 !important; }
  .gallery-item { height: 220px !important; }
  #contact { padding: 64px 24px !important; }
}

/* ── Dual map card ─────────────────────────────────────────── */
.dual-map-card {
  grid-column: span 12 !important;
}
.dual-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}
.dual-map-branch {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dual-map-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #16caff;
}
.dual-map-label svg {
  width: 14px;
  height: 14px;
  stroke: #16caff;
  flex-shrink: 0;
}
.dual-map-branch .google-map {
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}
.dual-map-branch .google-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.dual-map-branch .map-location-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: rgba(22, 202, 255, 0.06);
  border: 1px solid rgba(22, 202, 255, 0.18);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.dual-map-branch .map-location-pill:hover {
  background: rgba(22, 202, 255, 0.12);
  border-color: rgba(22, 202, 255, 0.35);
}
.dual-map-branch .map-location-pill strong {
  font-size: 12px;
  font-weight: 700;
  color: #d7eaff;
  letter-spacing: 0.5px;
}
.dual-map-branch .map-location-pill span {
  font-size: 11px;
  color: rgba(175, 210, 255, 0.65);
}
@media (max-width: 760px) {
  .dual-map-card { grid-column: span 1; }
  .dual-map-grid { grid-template-columns: 1fr; }
  .dual-map-branch .google-map { height: 180px; }
}

/* ── New full logo ─────────────────────────────────────────── */
.brand img.brand-logo-full,
.brand-logo-full {
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(22,202,255,0.35)) !important;
}
.site-header.is-scrolled .brand img.brand-logo-full,
.site-header.is-scrolled .brand-logo-full {
  filter: drop-shadow(0 0 7px rgba(22,202,255,0.25)) !important;
}
/* Loader version — bigger, centred */
.loader-logo-full {
  height: 110px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 22px rgba(22,202,255,0.55));
  animation: loaderPulse 1.4s ease-in-out infinite alternate;
}
@keyframes loaderPulse {
  from { opacity: 0.75; transform: scale(0.97); }
  to   { opacity: 1;    transform: scale(1); }
}
/* Remove old brand text layout since we're using full image now */
.brand span { display: none; }
@media (max-width: 760px) {
  .brand-logo-full { height: 40px; }
}

/* ── Mobile fixes (from live Cloudflare test) ──────────────── */
@media (max-width: 760px) {
  /* Dashboard grid — force all cards to single column */
  .dashboard-grid {
    grid-template-columns: 1fr !important;
    overflow: hidden;
  }
  .gauge-card, .metric-card, .status-card,
  .map-card, .calculator-card, .dual-map-card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  /* Process section — remove the large fixed height and hide the orbit on mobile */
  .process-section {
    min-height: unset !important;
  }
  .story-orbit {
    display: none !important;
  }

  /* Product grid — ensure 1 column, no overflow */
  .product-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  /* Dual map — stack vertically */
  .dual-map-grid {
    grid-template-columns: 1fr !important;
  }
  .dual-map-branch .google-map {
    height: 200px !important;
  }

  /* Prevent any section from overflowing horizontally */
  #products, #process, #dashboard, .gallery-section, #contact {
    overflow-x: hidden !important;
  }
}

/* ── Mobile GSAP visibility fix ────────────────────────────── */
/* On mobile, GSAP scroll triggers often don't fire — force
   all animated elements visible so gaps don't appear */
@media (max-width: 760px) {
  .story-step,
  .product-card,
  .dashboard-card,
  .gallery-item,
  .contact-info-item,
  .section-heading,
  .section-heading > *,
  .closing-cta-row .btn,
  .site-footer-bar {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  /* Process section — remove fixed height, hide orbit decoration */
  .process-section {
    min-height: unset !important;
    padding-bottom: 60px !important;
  }
  .story-orbit { display: none !important; }

  /* Storyline — compact vertical stacking */
  .storyline {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding-top: 24px !important;
  }
  .story-step {
    min-height: unset !important;
    padding: 20px !important;
  }

  /* Product section — collapse properly */
  .product-section {
    min-height: unset !important;
    padding: 60px 0 !important;
  }
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Maps — ensure iframes render with a fixed height */
  .dual-map-branch .google-map,
  .dual-map-branch .google-map iframe {
    min-height: 200px !important;
    height: 200px !important;
  }

  /* Dashboard — single column, no gaps */
  .dashboard-section {
    min-height: unset !important;
  }
  .dashboard-grid {
    gap: 12px !important;
  }
}

/* ── Map visual card (replaces unreliable iframes) ─────────── */
.map-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: #041020;
  border: 1px solid rgba(22, 202, 255, 0.2);
  transition: border-color 0.2s, transform 0.2s;
  gap: 12px;
}
.map-visual:hover {
  border-color: rgba(22, 202, 255, 0.5);
  transform: translateY(-2px);
}
.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 202, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 202, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin-marker {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: rgba(22, 202, 255, 0.12);
  border: 2px solid rgba(22, 202, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mapPulse 2s ease-in-out infinite;
}
.map-pin-marker svg {
  width: 26px;
  height: 26px;
}
@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 202, 255, 0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(22, 202, 255, 0); }
}
.map-open-label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #16caff;
  text-align: center;
}

.order-list-card {
  grid-column: span 7;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.order-list-card p {
  max-width: 520px;
  margin-top: 8px;
}

.case-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.case-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px;
  color: #dcefff;
  border: 1px solid rgba(22, 202, 255, 0.18);
  border-radius: 10px;
  background: rgba(22, 202, 255, 0.055);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.case-option:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 202, 255, 0.4);
  background: rgba(22, 202, 255, 0.09);
}

.case-option input {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  appearance: none;
  border: 1px solid rgba(128, 224, 255, 0.56);
  border-radius: 6px;
  background: rgba(3, 16, 39, 0.72);
  outline: none;
}

.case-option input:checked {
  border-color: rgba(72, 242, 189, 0.82);
  background: linear-gradient(135deg, #16caff, #48f2bd);
}

.case-option input:checked::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  content: "";
  border: solid #031225;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.case-option input:focus-visible {
  box-shadow: 0 0 0 3px rgba(22, 202, 255, 0.25);
}

.case-option span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.case-option strong {
  color: #f4fbff;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.case-option small {
  color: rgba(180, 215, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.case-option input:checked + span strong,
.case-option input:checked + span small {
  color: #48f2bd;
}

@media (max-width: 980px) {
  .calculator-card,
  .order-list-card {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  .order-list-card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .case-option-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile hero waterfall framing */
@media (max-width: 760px) {
  #three-stage {
    top: 68px;
    bottom: auto;
    height: min(820px, calc(100svh + 150px));
    overflow: hidden;
    opacity: 0.86;
    filter: brightness(0.82) saturate(1.08);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 82%, transparent 100%);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(1, 7, 18, 0.62) 42%, rgba(1, 8, 20, 0.18) 74%, rgba(1, 8, 20, 0.58)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 48%, rgba(0, 9, 22, 0.78) 100%);
  }

  .hero-water {
    top: 560px;
    right: -22%;
    bottom: auto;
    left: -22%;
    height: 255px;
    opacity: 0.78;
    transform: perspective(640px) rotateX(63deg);
    transform-origin: center bottom;
  }

  .hero-water::before {
    bottom: -58px;
  }

  .hero-water::after {
    bottom: 42px;
  }
}

@media (max-width: 420px) {
  #three-stage {
    height: min(800px, calc(100svh + 160px));
  }

  .hero-water {
    top: 545px;
    height: 238px;
  }
}

/* Mobile journey ribbon repair */
@media (max-width: 760px) {
  .journey-ribbon {
    right: 22px;
    bottom: 34px;
    left: 22px;
    width: auto;
    max-width: calc(100% - 44px);
    grid-template-columns: 1fr !important;
    align-items: start;
    gap: 20px;
    overflow: visible;
  }

  .journey-title {
    min-width: 0;
  }

  .journey-title h2 {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.18;
  }

  .journey-line {
    width: 100%;
    grid-template-columns: 1fr !important;
    gap: 10px;
    padding-top: 0;
  }

  .journey-line::before,
  .journey-line::after {
    display: none !important;
  }

  .journey-step {
    width: 100%;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: start;
    column-gap: 14px;
    row-gap: 2px;
    padding: 8px 0;
    text-align: left;
  }

  .journey-step span {
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
  }

  .journey-step strong,
  .journey-step small {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .gauge span {
    font-size: 34px;
  }
}

/* Dashboard gauge readability */
.dashboard-section .gauge span {
  color: #ffffff !important;
}
