:root {
  --navy-950: #06111e;
  --navy-900: #081a2c;
  --navy-800: #0d2740;
  --navy-700: #143b5e;
  --navy-600: #1d527c;
  --blue-500: #1f75c5;
  --aqua-500: #27c6d7;
  --aqua-400: #83eef3;
  --sky-100: #eefbff;
  --ink-900: #102132;
  --ink-700: #425468;
  --ink-500: #6c7d8f;
  --line: rgba(13, 39, 64, 0.1);
  --line-strong: rgba(13, 39, 64, 0.18);
  --white: #ffffff;
  --surface: #f5fbff;
  --surface-2: #ebf4fb;
  --success: #207a52;
  --danger: #9e4235;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --shadow-lg: 0 32px 80px rgba(7, 26, 46, 0.12);
  --shadow-md: 0 20px 50px rgba(7, 26, 46, 0.08);
  --max-width: 1240px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(39, 198, 215, 0.12), transparent 30%),
    linear-gradient(180deg, #fdfefe 0%, #f6fbff 34%, #fbfdff 100%);
  color: var(--ink-900);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.01ms !important;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 200;
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(31, 117, 197, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--aqua-500), var(--blue-500));
  box-shadow: 0 0 0 6px rgba(39, 198, 215, 0.12);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head p,
.section-lead,
.body-copy {
  margin: 0;
  color: var(--ink-700);
  font-size: 17px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(248, 252, 255, 0.78);
  border-bottom: 1px solid rgba(13, 39, 64, 0.06);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(7, 26, 46, 0.08);
  background: rgba(248, 252, 255, 0.94);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
}

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

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(320px, 42vw);
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  color: var(--navy-900);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.brand-copy span {
  display: block;
  color: var(--ink-500);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  position: relative;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 700;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--aqua-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.phone-link {
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--aqua-500));
  box-shadow: 0 18px 36px rgba(31, 117, 197, 0.24);
}

.btn-secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: 0 14px 28px rgba(7, 26, 46, 0.08);
}

.btn-ghost {
  color: var(--navy-900);
  background: transparent;
  border: 1px solid rgba(13, 39, 64, 0.16);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(13, 39, 64, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy-900);
  font-size: 20px;
}

.hero {
  position: relative;
  padding: clamp(32px, 6vw, 72px) 0 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(39, 198, 215, 0.16), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(31, 117, 197, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 20px 0 20px;
  color: var(--navy-950);
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-copy h1 em {
  color: var(--blue-500);
  font-style: normal;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-700);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 39, 64, 0.08);
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 800;
}

.hero-points li::before {
  content: "•";
  color: var(--aqua-500);
}

.hero-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.glow-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(39, 198, 215, 0.14);
}

.glow-rings span:nth-child(1) {
  width: 72%;
  height: 72%;
  right: 10%;
  top: 4%;
}

.glow-rings span:nth-child(2) {
  width: 92%;
  height: 92%;
  right: -4%;
  top: 10%;
}

.glow-rings span:nth-child(3) {
  width: 42%;
  height: 42%;
  left: 2%;
  top: 36%;
}

.hero-water {
  position: absolute;
  inset: 18px 18px 108px 18px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 251, 255, 0.86)),
    linear-gradient(180deg, rgba(31, 117, 197, 0.08), rgba(39, 198, 215, 0.08));
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-water::before {
  content: "";
  position: absolute;
  inset: -18% 22% 52% -14%;
  background: radial-gradient(circle, rgba(39, 198, 215, 0.28), transparent 70%);
  filter: blur(16px);
}

.hero-water::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background:
    radial-gradient(circle at 50% 10%, rgba(39, 198, 215, 0.28), transparent 56%),
    linear-gradient(180deg, rgba(127, 177, 214, 0.18), rgba(14, 55, 92, 0.02)),
    linear-gradient(180deg, rgba(31, 117, 197, 0.06), rgba(39, 198, 215, 0.12));
}

.hero-water-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 117, 197, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 117, 197, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 90%);
}

.hero-house {
  position: absolute;
  inset: 14% 15% 30% 15%;
}

.hero-house svg {
  width: 100%;
  height: 100%;
}

.hero-house path,
.hero-house polyline,
.hero-house rect,
.hero-house line {
  stroke: rgba(9, 37, 64, 0.82);
  stroke-width: 5;
  fill: rgba(255, 255, 255, 0.72);
}

.hero-house .accent-fill {
  fill: rgba(39, 198, 215, 0.26);
}

.hero-flow {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 30%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 65, 108, 0.36), rgba(39, 198, 215, 0.76), rgba(255, 255, 255, 0.92));
  filter: blur(0.2px);
  box-shadow: 0 0 32px rgba(39, 198, 215, 0.4);
}

.hero-surge {
  position: absolute;
  inset: 20% 6% 18% 18%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 50%, rgba(126, 98, 64, 0.26), transparent 30%),
    linear-gradient(90deg, rgba(125, 111, 87, 0.22), rgba(39, 198, 215, 0.16) 48%, rgba(255, 255, 255, 0.04));
  opacity: 0;
  filter: blur(12px);
  transform: translateX(-8%) scaleX(0.82);
  pointer-events: none;
}

.hero-ghost-device {
  position: absolute;
  left: 12%;
  bottom: 16%;
  width: 24%;
  min-width: 144px;
  padding: 16px 16px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(136, 130, 120, 0.94), rgba(85, 83, 79, 0.88));
  border: 1px solid rgba(56, 53, 49, 0.28);
  box-shadow: 0 22px 46px rgba(42, 37, 31, 0.22);
  z-index: 2;
  transform-origin: 50% 100%;
}

.hero-ghost-device::before,
.hero-ghost-device::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  border-radius: 999px;
}

.hero-ghost-device::before {
  top: 14px;
  height: 7px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-ghost-device::after {
  bottom: 14px;
  height: 7px;
  background: rgba(0, 0, 0, 0.1);
}

.ghost-cap {
  width: 34%;
  height: 16px;
  margin: 16px auto 0;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(67, 63, 57, 0.9), rgba(119, 111, 102, 0.86));
}

.ghost-body {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0 auto;
  width: 62%;
  height: 188px;
  padding: 18px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(198, 190, 178, 0.9), rgba(133, 125, 117, 0.94));
  border: 1px solid rgba(74, 67, 61, 0.26);
}

.ghost-body span {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(96, 90, 83, 0.82), rgba(170, 154, 120, 0.64));
}

.ghost-body span:nth-child(1),
.ghost-body span:nth-child(2) {
  height: 34px;
}

.ghost-body span:nth-child(3) {
  height: 76px;
}

.ghost-crack {
  position: absolute;
  background: linear-gradient(180deg, rgba(45, 38, 32, 0), rgba(45, 38, 32, 0.82), rgba(255, 255, 255, 0));
  border-radius: 999px;
  opacity: 0.88;
}

.ghost-crack-a {
  top: 28%;
  left: 48%;
  width: 4px;
  height: 118px;
  transform: rotate(22deg);
}

.ghost-crack-b {
  top: 42%;
  left: 38%;
  width: 4px;
  height: 94px;
  transform: rotate(-34deg);
}

.hero-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-burst span {
  position: absolute;
  left: 32%;
  top: 58%;
  width: calc(var(--size, 12) * 1px);
  height: calc(var(--size, 12) * 1px);
  border-radius: 4px 10px 8px 12px;
  background: linear-gradient(180deg, rgba(169, 151, 123, 0.9), rgba(43, 182, 201, 0.84));
  box-shadow: 0 0 18px rgba(39, 198, 215, 0.18);
  opacity: 0;
}

.hero-device {
  position: absolute;
  right: 9%;
  bottom: 13%;
  width: 34%;
  min-width: 168px;
  padding: 18px 18px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fefefe, #dff5fb);
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: 0 30px 60px rgba(7, 26, 46, 0.18);
}

.hero-device::before,
.hero-device::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  border-radius: 999px;
}

.hero-device::before {
  top: 16px;
  height: 8px;
  background: rgba(13, 39, 64, 0.08);
}

.hero-device::after {
  bottom: 16px;
  height: 8px;
  background: rgba(13, 39, 64, 0.05);
}

.hero-device .system-cap {
  width: 34%;
  height: 18px;
  margin: 18px auto 0;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-600));
}

.hero-device .system-body {
  display: grid;
  gap: 8px;
  margin: 0 auto;
  width: 62%;
  height: 240px;
  padding: 18px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(223, 245, 251, 0.86));
  border: 1px solid rgba(13, 39, 64, 0.08);
  position: relative;
}

.hero-device .system-body span {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(31, 117, 197, 0.18), rgba(39, 198, 215, 0.44));
}

.hero-device .system-body span:nth-child(1) {
  height: 42px;
}

.hero-device .system-body span:nth-child(2) {
  height: 42px;
}

.hero-device .system-body span:nth-child(3) {
  height: 96px;
}

.hero-card-grid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-card {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-card strong {
  display: block;
  color: var(--navy-950);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-card span {
  display: block;
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 700;
}

.hero-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-note-item {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(13, 39, 64, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.hero-note-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 800;
}

.hero-note-item span {
  display: block;
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 14px;
}

.story {
  position: relative;
  padding: 80px 0 30px;
}

.story-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.story-shell {
  min-height: 200vh;
}

.story-stage {
  position: relative;
  min-height: calc(100vh - 40px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.scene-shell {
  position: relative;
  min-height: 76vh;
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(234, 244, 251, 0.92)),
    linear-gradient(135deg, rgba(39, 198, 215, 0.08), rgba(31, 117, 197, 0.04));
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  --murk: 1;
  --pipe-flow: 0;
  --solution: 0;
  --clarity: 0;
  --product-lift: 0;
  --breakup: 0;
  --assembly: 0;
  --blast: 0;
}

.scene-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(39, 198, 215, 0.22), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(31, 117, 197, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.scene-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.scene-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(13, 39, 64, 0.08);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.scene-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-500), var(--aqua-500));
}

.scene-progress {
  display: flex;
  gap: 10px;
}

.scene-progress span {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(13, 39, 64, 0.1);
  transition: background-color 0.24s ease, transform 0.24s ease;
}

.scene-progress span.is-active {
  background: linear-gradient(90deg, var(--blue-500), var(--aqua-500));
  transform: scaleX(1.1);
}

.scene-lab {
  position: absolute;
  inset: 72px 28px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: end;
}

.scene-home {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(231, 248, 252, 0.72)),
    linear-gradient(180deg, rgba(31, 117, 197, 0.03), rgba(39, 198, 215, 0.08));
  border: 1px solid rgba(13, 39, 64, 0.08);
  overflow: hidden;
}

.scene-house-frame {
  position: absolute;
  inset: 18px 18px 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 40% 16%, rgba(39, 198, 215, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.26));
  overflow: hidden;
}

.scene-house-svg {
  position: absolute;
  inset: 11% 7% 14%;
  opacity: calc(0.72 + (var(--clarity) * 0.18));
  transform: translateY(calc(var(--product-lift) * -14px));
}

.scene-house-svg svg {
  width: 100%;
  height: 100%;
}

.scene-house-svg path,
.scene-house-svg polyline,
.scene-house-svg line,
.scene-house-svg rect {
  fill: rgba(255, 255, 255, 0.72);
  stroke: rgba(9, 37, 64, 0.78);
  stroke-width: 4.5;
}

.scene-house-svg .window-fill {
  fill: rgba(39, 198, 215, 0.14);
}

.scene-cloud {
  position: absolute;
  inset: 6% 10% 42%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 48%, rgba(125, 144, 152, calc(0.16 + (var(--murk) * 0.28))), transparent 56%),
    radial-gradient(circle at 60% 38%, rgba(164, 146, 116, calc(0.12 + (var(--murk) * 0.22))), transparent 54%);
  filter: blur(24px);
  opacity: calc(0.2 + (var(--murk) * 0.9));
  transform: scale(calc(0.94 + (var(--murk) * 0.08)));
  transition: opacity 0.22s linear, transform 0.22s linear;
}

.scene-water {
  position: absolute;
  inset: auto 8% 8% 8%;
  height: 46%;
  border-radius: 28px 28px 24px 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(14, 59, 100, calc(0.28 + (var(--murk) * 0.28))), rgba(20, 72, 116, calc(0.32 + (var(--murk) * 0.22))));
}

.scene-water::before {
  content: "";
  position: absolute;
  inset: 4% 5% auto 5%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, calc(0.18 + (var(--clarity) * 0.44)));
  filter: blur(2px);
}

.scene-water::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, calc(0.1 + (var(--clarity) * 0.36))), transparent 40%),
    linear-gradient(180deg, rgba(39, 198, 215, calc(var(--clarity) * 0.72)), rgba(14, 75, 123, calc(0.48 - (var(--clarity) * 0.14))));
}

.scene-flush-wave {
  position: absolute;
  inset: 28% 4% 22% 12%;
  border-radius: 40px;
  background:
    linear-gradient(90deg, rgba(125, 108, 80, calc(0.16 + (var(--murk) * 0.12))), rgba(39, 198, 215, calc(0.18 + (var(--clarity) * 0.5))) 56%, rgba(255, 255, 255, calc(var(--clarity) * 0.24)));
  filter: blur(16px);
  opacity: calc((var(--blast) * 0.82) + (var(--clarity) * 0.12));
  transform: translateX(calc((-18% + (var(--blast) * 22%)))) scaleX(calc(0.72 + (var(--blast) * 0.48)));
  pointer-events: none;
}

.particle-field {
  position: absolute;
  inset: 14% 10% 18%;
  pointer-events: none;
  opacity: calc(0.18 + (var(--murk) * 0.72) + (var(--breakup) * 0.26) - (var(--clarity) * 0.52));
}

.particle-field span {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  width: calc(var(--size) * 1px);
  height: calc(var(--size) * 1px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.52), rgba(122, 111, 92, 0.9));
  box-shadow: 0 0 10px rgba(122, 111, 92, 0.16);
  transform: translate3d(calc(var(--breakup) * (var(--drift) * 2px)), calc((var(--pipe-flow) * -34px) + (var(--drift) * -1px) - (var(--breakup) * 14px)), 0) scale(calc(1 + (var(--breakup) * 0.18)));
  animation: floatParticle calc(7s + (var(--speed) * 0.15s)) ease-in-out infinite;
  animation-delay: calc(var(--delay) * -1s);
}

.clean-field {
  position: absolute;
  inset: 8% 12% 28%;
  opacity: calc(0.12 + (var(--clarity) * 0.84));
  pointer-events: none;
}

.clean-field span {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  width: calc(var(--size) * 1px);
  height: calc(var(--size) * 1px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(131, 238, 243, 0.24));
  box-shadow: 0 0 22px rgba(131, 238, 243, 0.42);
  animation: sparkle calc(6s + (var(--speed) * 0.15s)) ease-in-out infinite;
  animation-delay: calc(var(--delay) * -1s);
}

.pipe-grid {
  position: absolute;
  inset: 18px 18px 18px 18px;
  pointer-events: none;
}

.pipe-grid svg {
  width: 100%;
  height: 100%;
}

.pipe-grid .pipe-base {
  fill: none;
  stroke: rgba(8, 26, 44, 0.14);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pipe-grid .pipe-flow {
  fill: none;
  stroke: url(#pipeFlowGradient);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: calc(520 - (var(--pipe-flow) * 520));
  opacity: calc(0.08 + (var(--pipe-flow) * 0.92));
  filter: drop-shadow(0 0 10px rgba(39, 198, 215, 0.34));
}

.scene-system {
  position: relative;
  align-self: stretch;
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(226, 246, 252, 0.82));
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: 0 24px 46px rgba(7, 26, 46, 0.12);
  transform: translateY(calc((1 - var(--assembly)) * 18px));
  opacity: calc(0.48 + (var(--blast) * 0.18) + (var(--assembly) * 0.24));
  overflow: hidden;
}

.system-transition {
  position: relative;
  min-height: 212px;
  margin-bottom: 18px;
}

.old-system-shell {
  position: absolute;
  inset: 0 14% 0 14%;
  padding: 16px 16px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(138, 130, 121, 0.96), rgba(80, 76, 71, 0.92));
  border: 1px solid rgba(61, 56, 51, 0.22);
  box-shadow: 0 20px 42px rgba(38, 33, 28, 0.2);
  transform-origin: 50% 100%;
  opacity: calc(0.92 - (var(--assembly) * 1.16));
  transform:
    translateY(calc(var(--breakup) * -18px))
    translateX(calc(var(--breakup) * -24px))
    rotate(calc(var(--breakup) * -14deg))
    scale(calc(1 - (var(--breakup) * 0.2)));
  filter: blur(calc(var(--breakup) * 1.4px)) saturate(calc(1 - (var(--breakup) * 0.22)));
}

.old-cap {
  width: 38%;
  height: 16px;
  margin: 8px auto 12px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(77, 71, 64, 0.9), rgba(130, 121, 111, 0.82));
}

.old-column {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(205, 197, 183, 0.86), rgba(130, 122, 114, 0.94));
  border: 1px solid rgba(77, 71, 64, 0.18);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.old-column-wide {
  height: 116px;
}

.old-column-narrow {
  width: 58%;
  height: 44px;
  margin: 10px auto 0;
}

.old-crack {
  position: absolute;
  background: linear-gradient(180deg, rgba(43, 37, 32, 0), rgba(43, 37, 32, 0.9), rgba(255, 255, 255, 0));
  border-radius: 999px;
  opacity: calc(0.26 + (var(--breakup) * 0.9));
}

.old-crack-a {
  top: 32%;
  left: 48%;
  width: 4px;
  height: 110px;
  transform: rotate(18deg);
}

.old-crack-b {
  top: 46%;
  left: 38%;
  width: 4px;
  height: 86px;
  transform: rotate(-32deg);
}

.system-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.system-burst span {
  position: absolute;
  left: 50%;
  top: 48%;
  width: calc(var(--size, 11) * 1px);
  height: calc(var(--size, 11) * 1px);
  border-radius: 4px 10px 8px 12px;
  background: linear-gradient(180deg, rgba(168, 152, 125, 0.92), rgba(39, 198, 215, 0.88));
  opacity: calc(var(--blast) * 0.98);
  transform:
    translate3d(calc(var(--blast) * var(--travel-x, 0px)), calc(var(--blast) * var(--travel-y, 0px)), 0)
    rotate(calc(var(--blast) * var(--rotate, 0deg)))
    scale(calc(0.5 + (var(--blast) * 1.02)));
  box-shadow: 0 0 22px rgba(39, 198, 215, 0.22);
}

.system-energy {
  position: absolute;
  inset: 10% 8% 16%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 35% 50%, rgba(39, 198, 215, calc(0.16 + (var(--assembly) * 0.38))), transparent 34%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, calc(var(--blast) * 0.3)), transparent 28%),
    linear-gradient(90deg, rgba(39, 198, 215, calc(var(--blast) * 0.42)), rgba(255, 255, 255, calc(var(--assembly) * 0.12)));
  filter: blur(22px);
  opacity: calc((var(--blast) * 0.92) + (var(--assembly) * 0.24));
}

.system-stack {
  display: grid;
  gap: 12px;
  height: 100%;
  align-content: center;
  position: relative;
  z-index: 2;
  transform: translateY(calc((1 - var(--assembly)) * 34px)) scale(calc(0.9 + (var(--assembly) * 0.12)));
  opacity: calc(0.18 + (var(--blast) * 0.16) + (var(--assembly) * 0.78));
}

.system-stack .capsule {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 53, 89, 0.9), rgba(39, 198, 215, 0.46));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.system-stack .capsule:nth-child(1) {
  height: 36px;
}

.system-stack .capsule:nth-child(2),
.system-stack .capsule:nth-child(3) {
  height: 84px;
}

.system-stack .capsule:nth-child(4) {
  height: 118px;
}

.system-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(13, 39, 64, 0.08);
}

.system-meta strong {
  display: block;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 800;
}

.system-meta span {
  display: block;
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 14px;
}

.story-copy {
  position: relative;
  min-height: 420px;
}

.story-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.story-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.story-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-step::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-500), transparent);
}

.story-panel h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.story-panel p {
  margin: 0;
  color: var(--ink-700);
  font-size: 17px;
}

.story-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-700);
  font-size: 15px;
}

.story-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.5em;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(180deg, var(--blue-500), var(--aqua-500));
}

.difference-strip {
  padding: 56px 0 24px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.difference-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(13, 39, 64, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.difference-card strong {
  display: block;
  color: var(--navy-900);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.difference-card span {
  display: block;
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 14px;
}

.systems {
  padding: 92px 0 32px;
}

.systems-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: start;
}

.systems-frame,
.systems-stack,
.difference-frame,
.conversion-shell,
.service-map,
.trust-band {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(13, 39, 64, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
}

.systems-frame {
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.systems-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(39, 198, 215, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.systems-render {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 26, 44, 0.96), rgba(11, 34, 56, 0.98)),
    linear-gradient(135deg, rgba(39, 198, 215, 0.12), transparent 45%);
  overflow: hidden;
}

.systems-render::before {
  content: "";
  position: absolute;
  inset: auto 12% 6% 12%;
  height: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 198, 215, 0.28), transparent 70%);
  filter: blur(10px);
}

.systems-render .render-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.4;
}

.systems-render .render-pillars {
  position: absolute;
  inset: 16% 14% 14%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.systems-render .pillar {
  position: relative;
  min-height: 300px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(219, 244, 249, 0.8));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 30px 80px rgba(0, 0, 0, 0.18);
}

.systems-render .pillar::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 24px;
  height: 12px;
  border-radius: 999px;
  background: rgba(8, 26, 44, 0.08);
}

.systems-render .pillar::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 20px;
  height: 48%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(180deg, rgba(39, 198, 215, 0.4), rgba(31, 117, 197, 0.22));
}

.systems-render .pillar:nth-child(2) {
  transform: translateY(-28px);
}

.systems-render .pillar:nth-child(3) {
  min-height: 250px;
}

.systems-render .render-copy {
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  gap: 8px;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.systems-render .render-copy strong {
  color: var(--white);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.systems-render .render-copy span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.systems-stack {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.service-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 252, 0.88));
  border: 1px solid rgba(13, 39, 64, 0.08);
}

.service-card strong {
  display: block;
  color: var(--navy-900);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--ink-700);
  font-size: 15px;
}

.service-card .label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(39, 198, 215, 0.12);
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.difference {
  padding: 96px 0 34px;
}

.difference-frame {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 245, 250, 0.94));
}

.difference-col {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(13, 39, 64, 0.08);
}

.difference-col.bad {
  background:
    linear-gradient(180deg, rgba(255, 244, 242, 0.9), rgba(255, 255, 255, 0.84));
}

.difference-col.good {
  background:
    linear-gradient(180deg, rgba(237, 251, 255, 0.96), rgba(255, 255, 255, 0.88));
}

.difference-col h3 {
  margin: 0 0 18px;
  color: var(--navy-900);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.difference-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.difference-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-700);
  font-size: 16px;
}

.difference-list li::before {
  content: "—";
  color: var(--ink-500);
  flex: 0 0 auto;
}

.difference-col.good .difference-list li::before {
  color: var(--aqua-500);
}

.difference-col.bad .difference-list li::before {
  color: #c95d49;
}

.pricing-band {
  margin-top: 24px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
}

.pricing-band h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.05em;
}

.pricing-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.pricing-box {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.pricing-box strong {
  display: block;
  color: var(--white);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.pricing-box span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.trust {
  padding: 92px 0 28px;
}

.trust-band {
  padding: 24px;
}

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

.trust-item {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 248, 252, 0.88));
  border: 1px solid rgba(13, 39, 64, 0.08);
}

.trust-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 800;
}

.trust-item span {
  display: block;
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 14px;
}

.service-area {
  padding: 92px 0 34px;
}

.service-map {
  padding: 26px;
  display: grid;
  gap: 26px;
}

.service-map-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.service-map-visual {
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(12, 39, 64, 0.96), rgba(19, 59, 95, 0.98));
  min-height: 280px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.service-map-visual::before {
  content: "";
  position: absolute;
  inset: auto 10% 6% 10%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 198, 215, 0.36), transparent 72%);
  filter: blur(8px);
}

.service-map-visual svg {
  width: 78%;
  position: relative;
  z-index: 1;
}

.service-map-visual path {
  fill: rgba(131, 238, 243, 0.18);
  stroke: rgba(131, 238, 243, 0.9);
  stroke-width: 2;
}

.service-map-visual circle {
  fill: var(--aqua-400);
}

.service-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-chip-grid span {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 39, 64, 0.08);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.conversion {
  padding: 96px 0 88px;
}

.conversion-shell {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 26, 46, 0.98), rgba(18, 56, 92, 0.98)),
    linear-gradient(180deg, rgba(39, 198, 215, 0.18), transparent 35%);
}

.conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 0;
}

.conversion-copy {
  padding: 42px;
  color: var(--white);
}

.conversion-copy .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--aqua-400);
}

.conversion-copy h2 {
  margin: 18px 0 16px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.conversion-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.conversion-points {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.conversion-point {
  padding: 18px 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.conversion-point strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.conversion-point span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.conversion-contact {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.conversion-contact strong {
  display: block;
  color: var(--white);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 26px;
  letter-spacing: -0.05em;
}

.conversion-contact span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.form-shell {
  padding: 34px;
  background: rgba(255, 255, 255, 0.98);
}

.form-shell h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.form-shell .form-sub {
  margin: 14px 0 0;
  color: var(--ink-500);
  font-size: 15px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: var(--danger);
  background: #fff5f3;
  border: 1px solid rgba(158, 66, 53, 0.14);
}

#leadFormMount {
  margin-top: 20px;
}

.form-placeholder {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 22px;
  border-radius: 24px;
  border: 1px dashed rgba(13, 39, 64, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-700);
}

.form-placeholder strong {
  color: var(--navy-900);
  font-size: 16px;
}

.form-placeholder span {
  font-size: 14px;
}

#leadFormMount .hs-form-field {
  margin-bottom: 16px;
}

#leadFormMount .hs-form-field > label,
#leadFormMount .hs-richtext,
#leadFormMount .hs-error-msgs label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-900);
  font-size: 13px;
  font-weight: 800;
}

#leadFormMount .inputs-list,
#leadFormMount .hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style: none;
}

#leadFormMount .hs-input,
#leadFormMount .hs-form input[type="text"],
#leadFormMount .hs-form input[type="email"],
#leadFormMount .hs-form input[type="tel"],
#leadFormMount .hs-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 39, 64, 0.12);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink-900);
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#leadFormMount .hs-form textarea {
  min-height: 110px;
  resize: vertical;
}

#leadFormMount .hs-input:focus,
#leadFormMount .hs-form textarea:focus,
#leadFormMount .hs-form input:focus {
  outline: none;
  border-color: rgba(31, 117, 197, 0.52);
  box-shadow: 0 0 0 4px rgba(31, 117, 197, 0.12);
}

#leadFormMount .hs-button {
  width: 100%;
  margin-top: 8px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--aqua-500));
  box-shadow: 0 20px 36px rgba(31, 117, 197, 0.26);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#leadFormMount .hs-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 42px rgba(31, 117, 197, 0.32);
}

#leadFormMount .hs_error_rollup,
#leadFormMount .submitted-message {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
}

#leadFormMount .hs_error_rollup {
  color: var(--danger);
  background: #fff5f3;
  border: 1px solid rgba(158, 66, 53, 0.14);
}

#leadFormMount .submitted-message {
  color: var(--success);
  background: #eefaf4;
  border: 1px solid rgba(32, 122, 82, 0.14);
}

.form-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 800;
}

.form-meta .dot {
  color: rgba(13, 39, 64, 0.18);
}

.fine {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 12px;
  line-height: 1.5;
}

.fine a {
  color: var(--blue-500);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0 28px;
  background: #071524;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 22px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.footer-brand strong {
  display: block;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.footer-brand span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy {
  margin-top: 14px;
  max-width: 360px;
  font-size: 14px;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 0;
}

.footer-heading {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.footer-links,
.footer-links li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

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

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

body.reduced-motion [data-reveal] {
  opacity: 1;
  transform: none;
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translate3d(0, calc((var(--pipe-flow) * -34px) + (var(--drift) * -1px)), 0);
  }
  50% {
    transform: translate3d(0, calc((var(--pipe-flow) * -48px) + (var(--drift) * 1px)), 0);
  }
}

@keyframes sparkle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .systems-grid,
  .conversion-grid,
  .service-map-grid,
  .story-stage,
  .difference-frame {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 720px;
  }

  .story-shell {
    min-height: auto;
  }

  .story-stage {
    gap: 28px;
    min-height: auto;
  }

  .story-copy {
    min-height: auto;
  }

  .story-panel {
    position: relative;
    opacity: 1;
    transform: none;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(13, 39, 64, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
  }

  .scene-shell {
    min-height: 680px;
  }

  .scene-lab {
    inset: 72px 22px 22px;
  }

  .hero-note,
  .difference-grid,
  .trust-grid,
  .hero-card-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav,
  .phone-link,
  .header-actions .btn {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav.is-open {
    position: fixed;
    inset: calc(var(--header-height) + 6px) 20px auto;
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(248, 252, 255, 0.98);
    border: 1px solid rgba(13, 39, 64, 0.08);
    box-shadow: 0 20px 46px rgba(7, 26, 46, 0.14);
  }

  .nav.is-open a {
    color: var(--navy-900);
    font-size: 16px;
  }

  .hero {
    padding-top: 28px;
  }

  .site-header .wrap {
    min-height: 74px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-logo {
    height: 52px;
    max-width: min(280px, 58vw);
  }

  .header-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .hero-copy h1 {
    max-width: 700px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-card-grid,
  .hero-note,
  .difference-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scene-shell {
    min-height: 600px;
    padding: 20px;
  }

  .scene-lab {
    inset: 62px 18px 18px;
    grid-template-columns: 1fr;
  }

  .scene-home {
    min-height: 360px;
  }

  .scene-system {
    min-height: 260px;
  }

  .conversion-copy,
  .form-shell,
  .systems-frame,
  .difference-frame,
  .trust-band,
  .service-map {
    padding: 24px;
  }

  .conversion-copy h2 {
    font-size: clamp(34px, 10vw, 54px);
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.5;
  }

  .wrap {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero-copy p,
  .section-head p,
  .story-panel p,
  .body-copy {
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy span {
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .eyebrow {
    gap: 8px;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(18px, 9.8vw, 38px);
    letter-spacing: -0.07em;
    line-height: 0.92;
    max-width: 100%;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .hero-water {
    inset: 12px 12px 104px 12px;
  }

  .hero-card {
    padding: 16px;
  }

  .hero-card strong {
    font-size: 20px;
  }

  .scene-shell {
    min-height: 520px;
  }

  .scene-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .scene-progress {
    gap: 6px;
  }

  .scene-progress span {
    width: 30px;
  }

  .scene-home {
    min-height: 290px;
  }

  .story-panel {
    padding: 18px;
  }

  .story-panel h3,
  .section-head h2 {
    font-size: clamp(26px, 9vw, 38px);
  }

  .pricing-box strong {
    font-size: 34px;
  }

  .form-shell h3 {
    font-size: 30px;
  }
}

/* ---------------------------------------------------------------- */
/* WebGL scene layer (site3d.js)                                     */
/* ---------------------------------------------------------------- */

.hw3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-water .hw3d-canvas {
  pointer-events: auto;
}

body.has-webgl .particle-field,
body.has-webgl .clean-field {
  display: none;
}

body.has-webgl .systems-render .render-pillars {
  display: none;
}

body.has-webgl .hero-water-grid {
  opacity: 0.4;
}

.systems-render .hw3d-canvas {
  z-index: 1;
}

.systems-render .render-copy {
  z-index: 2;
}

/* ---------------------------------------------------------------- */
/* Cinematic photo story stage                                       */
/* Photos: Pexels free license (commercial use, no attribution req.) */
/* ---------------------------------------------------------------- */

.scene-cinema {
  position: absolute;
  inset: 72px 28px 28px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.scene-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
}

.scene-photo picture,
.hero-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.scene-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  will-change: transform, opacity;
}

.scene-photo:first-child {
  opacity: 1;
}

.scene-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(66, 54, 34, 0.5), rgba(30, 26, 16, 0.62));
  mix-blend-mode: multiply;
  opacity: calc(var(--murk, 1) * 0.85);
  z-index: 1;
}

.scene-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 18%, rgba(131, 238, 243, 0.4), transparent 55%),
    linear-gradient(180deg, rgba(39, 198, 215, 0.16), transparent 60%);
  mix-blend-mode: screen;
  opacity: var(--clarity, 0);
  z-index: 1;
}

.scene-cinema .hw3d-canvas {
  z-index: 2;
}

.scene-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(8, 26, 44, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
}

.scene-caption strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ---------------------------------------------------------------- */
/* Hero photo panel                                                  */
/* ---------------------------------------------------------------- */

.hero-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.hero-photo-grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(200deg, rgba(6, 17, 30, 0) 42%, rgba(6, 17, 30, 0.45)),
    linear-gradient(20deg, rgba(39, 198, 215, 0.2), transparent 52%);
  z-index: 1;
}

.hero-water .hw3d-canvas {
  z-index: 2;
}

.hero-photo-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
}

.hero-chip {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 39, 64, 0.1);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy-800);
}

.form-logo {
  width: 132px;
  height: auto;
  border-radius: 18px;
  margin-bottom: 4px;
}

/* ---------------------------------------------------------------- */
/* Process (How it works)                                            */
/* ---------------------------------------------------------------- */

.process {
  padding: 96px 0 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.process-step {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 10px;
}

.step-num {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--aqua-500);
}

.process-step strong {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  color: var(--navy-800);
}

.process-step p {
  margin: 0;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------------------------------------------------------------- */
/* FAQ                                                               */
/* ---------------------------------------------------------------- */

.faq {
  padding: 96px 0;
}

.faq-list {
  margin-top: 36px;
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  font-weight: 700;
  color: var(--navy-800);
  font-size: 16.5px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-500);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--ink-700);
  line-height: 1.65;
}

.faq-cta {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process,
  .faq {
    padding: 64px 0 32px;
  }
}

/* ---------------------------------------------------------------- */
/* Promo bar                                                         */
/* ---------------------------------------------------------------- */

.promo-bar {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  font-size: 13.5px;
  padding: 9px 0;
}

.promo-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.promo-text strong {
  color: var(--aqua-400);
}

.promo-cta {
  font-weight: 800;
  color: var(--aqua-400);
  white-space: nowrap;
}

.promo-cta:hover {
  color: var(--white);
}

/* ---------------------------------------------------------------- */
/* Symptom cards (real photos)                                       */
/* ---------------------------------------------------------------- */

.symptoms {
  padding: 96px 0 48px;
}

.symptom-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}

.symptom-hero,
.symptom-compare {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(13, 39, 64, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.symptom-hero {
  margin: 0;
  overflow: hidden;
  position: relative;
  min-height: 100%;
}

.symptom-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(6, 17, 30, 0), rgba(6, 17, 30, 0.2));
  pointer-events: none;
}

.symptom-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.symptom-compare {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.compare-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(13, 39, 64, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 251, 0.88));
}

.compare-card.bad {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 233, 0.92)),
    linear-gradient(135deg, rgba(177, 141, 92, 0.08), rgba(13, 39, 64, 0.03));
}

.compare-card.good {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 248, 251, 0.92)),
    linear-gradient(135deg, rgba(39, 198, 215, 0.1), rgba(31, 117, 197, 0.05));
}

.compare-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(13, 39, 64, 0.06);
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-card strong {
  display: block;
  color: var(--navy-900);
  font-family: "Sora", sans-serif;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.compare-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.compare-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.6;
}

.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-500), var(--aqua-500));
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.symptom-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.symptom-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.symptom-copy {
  padding: 18px 20px 22px;
  display: grid;
  gap: 8px;
}

.symptom-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 16.5px;
  color: var(--navy-800);
}

.symptom-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-700);
}

.symptom-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.symptom-cta p {
  margin: 0;
  font-weight: 700;
  color: var(--navy-800);
}

/* ---------------------------------------------------------------- */
/* Service cards with product photos                                 */
/* ---------------------------------------------------------------- */

.service-card.has-photo {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.service-photo {
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--surface-2);
  padding: 8px;
}

.service-copy {
  display: grid;
  gap: 6px;
}

.service-link {
  font-weight: 800;
  font-size: 14px;
  color: var(--blue-500);
}

.service-link:hover {
  color: var(--aqua-500);
}

/* ---------------------------------------------------------------- */
/* Install wall                                                      */
/* ---------------------------------------------------------------- */

.installs {
  padding: 96px 0 48px;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.install-shot {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
}

.install-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.install-shot:hover img {
  transform: scale(1.06);
}

.install-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.install-cta p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-800);
}

@media (max-width: 980px) {
  .symptom-feature,
  .systems-grid {
    grid-template-columns: 1fr;
  }

  .symptom-hero img {
    min-height: 420px;
  }

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

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

  .symptoms,
  .installs {
    padding: 64px 0 32px;
  }
}

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

  .symptom-feature {
    gap: 18px;
  }

  .symptom-hero img {
    min-height: 320px;
  }

  .compare-card {
    padding: 18px;
    border-radius: 20px;
  }

  .compare-card strong {
    font-size: 18px;
  }

  .promo-bar .wrap {
    gap: 8px;
  }

  .service-card.has-photo {
    grid-template-columns: 1fr;
  }

  .service-photo {
    width: 110px;
    height: 110px;
  }
}

/* ---------------------------------------------------------------- */
/* California radar map                                              */
/* ---------------------------------------------------------------- */

.service-map-visual .ca-map {
  width: 84%;
}

.service-map-visual .ca-outline {
  fill: rgba(131, 238, 243, 0.08);
  stroke: rgba(131, 238, 243, 0.85);
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.service-map-visual .radar-glow {
  stroke: none;
}

.service-map-visual .radar-radius {
  fill: none;
  stroke: rgba(131, 238, 243, 0.55);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.service-map-visual .radar-pulse {
  fill: none;
  stroke: var(--aqua-500);
  stroke-width: 1.4;
}

.service-map-visual .radar-hub {
  fill: var(--aqua-500);
}

.service-map-visual .radar-core {
  fill: #ffffff;
}

.service-map-visual .map-label {
  fill: #eefbff;
  font-family: "Sora", sans-serif;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-map-visual .map-sublabel {
  fill: rgba(131, 238, 243, 0.75);
  font-family: "Manrope", sans-serif;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-map-visual .map-title {
  fill: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-map-visual .map-rule {
  stroke: rgba(131, 238, 243, 0.7);
  stroke-width: 1;
}

/* ---------------------------------------------------------------- */
/* Brand: icon-only header, full lockup in footer                    */
/* ---------------------------------------------------------------- */

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(13, 39, 64, 0.1), 0 4px 14px rgba(7, 26, 46, 0.1);
  object-fit: cover;
  flex: 0 0 auto;
}

.footer-logo {
  width: 148px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  flex: 0 0 auto;
}

/* ---------------------------------------------------------------- */
/* Before / after result band                                        */
/* ---------------------------------------------------------------- */

.result-band {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.result-photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.result-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.result-copy {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.result-copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--navy-800);
  letter-spacing: -0.02em;
}

.result-copy p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .result-band {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}
