:root {
  --bg: #071524;
  --bg-soft: #0d2740;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --line: rgba(13, 39, 64, 0.1);
  --ink: #10273c;
  --muted: #5e7383;
  --navy: #0e2943;
  --navy-deep: #071a2d;
  --aqua: #24bfdc;
  --cyan: #99f0ff;
  --mint: #41c9b0;
  --silver: #d9e8ee;
  --hero-shadow: 0 30px 90px rgba(7, 26, 45, 0.2);
  --card-shadow: 0 20px 55px rgba(7, 26, 45, 0.11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1440px;
  --display-font: "Avenir Next", "Optima", "Trebuchet MS", sans-serif;
  --body-font: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--display-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(92, 228, 255, 0.26), transparent 18%),
    radial-gradient(circle at 82% 11%, rgba(41, 130, 192, 0.22), transparent 17%),
    linear-gradient(180deg, #edf9fb 0%, #dbeaf2 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(12px);
}

body::before {
  top: 120px;
  left: -90px;
  width: 250px;
  height: 250px;
  background: rgba(45, 203, 230, 0.16);
}

body::after {
  right: -100px;
  bottom: 90px;
  width: 280px;
  height: 280px;
  background: rgba(26, 86, 140, 0.14);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 55px rgba(9, 33, 54, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-link img {
  width: 220px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  padding: 8px;
  border-radius: 15px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(223, 244, 249, 0.85));
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

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

.brand-copy strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--navy);
  background: rgba(36, 191, 220, 0.1);
  transform: translateY(-1px);
}

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

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(13, 39, 64, 0.08);
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
}

.menu-toggle span {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #effcff;
  background: linear-gradient(135deg, #1181a3, #0b3556 72%);
  box-shadow: 0 18px 40px rgba(12, 47, 78, 0.24);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 39, 64, 0.1);
  box-shadow: 0 14px 30px rgba(13, 39, 64, 0.08);
}

.button-ghost {
  color: #effcff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #0f5a76;
  background: rgba(25, 183, 219, 0.1);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2bd6f0, #0c728d);
  box-shadow: 0 0 0 6px rgba(43, 214, 240, 0.12);
}

.text-white {
  color: white;
}

.page-main {
  padding-bottom: 72px;
}

.page-hero {
  padding: 32px 0 20px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.38fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.hero-card,
.glass-card,
.section-card,
.cta-band,
.footer-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
}

.hero-card {
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(43, 214, 240, 0.24), transparent 25%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(242, 250, 252, 0.95));
  box-shadow: var(--hero-shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 184, 214, 0.24), transparent 64%);
}

.hero-card h1,
.page-title {
  margin: 18px 0 0;
  max-width: 12ch;
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-card p,
.lead,
.section-copy,
.card-copy,
.info-copy,
.faq-copy,
.footer-copy {
  font-family: var(--body-font);
}

.hero-card p {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.74;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.metric {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.metric strong {
  display: block;
  font-size: 1.26rem;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  padding: 30px;
  color: #effcff;
  background:
    radial-gradient(circle at top right, rgba(117, 237, 255, 0.22), transparent 24%),
    linear-gradient(160deg, #0d2942, #103b5f 70%, #0b2239 100%);
  box-shadow: 0 28px 90px rgba(7, 26, 45, 0.22);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-panel::before {
  top: 20px;
  right: 26px;
  width: 108px;
  height: 108px;
  border-radius: 30px;
  transform: rotate(14deg);
  background: linear-gradient(145deg, rgba(126, 239, 255, 0.2), rgba(126, 239, 255, 0.02));
}

.hero-panel::after {
  left: -30px;
  bottom: -36px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 239, 255, 0.18), transparent 70%);
}

.hero-panel h2,
.section-heading h2,
.section-title {
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-panel p {
  margin: 12px 0 0;
  color: rgba(239, 252, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
}

.stack-list,
.bullet-list,
.footer-links,
.contact-list,
.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stack-list {
  display: grid;
  gap: 12px;
}

.stack-item {
  padding: 16px 16px 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.stack-item strong {
  display: block;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stack-item span {
  display: block;
  margin-top: 6px;
  color: rgba(239, 252, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.6;
}

.hero-illustration {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 118px;
  height: 118px;
  opacity: 0.9;
  animation: float 8s ease-in-out infinite;
}

.wave-line {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(117, 237, 255, 0.15), rgba(117, 237, 255, 0.55), rgba(117, 237, 255, 0.15));
  position: relative;
  overflow: hidden;
}

.wave-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  animation: shimmer 4.6s linear infinite;
}

.section {
  padding: 18px 0;
}

.section+.section {
  margin-top: 16px;
}

.section-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--card-shadow);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading p {
  max-width: 58ch;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.74;
  font-size: 1rem;
}

.badge-note {
  padding: 12px 15px;
  border-radius: 16px;
  background: rgba(36, 191, 220, 0.1);
  color: #0f6782;
  font-size: 0.82rem;
  line-height: 1.55;
  font-weight: 700;
}

.grid-3,
.grid-4,
.split-grid,
.product-grid,
.stats-grid,
.insight-grid,
.contact-grid,
.footer-grid,
.comparison-grid,
.value-grid {
  display: grid;
  gap: 18px;
}

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

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

.split-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

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

.stats-grid,
.insight-grid,
.contact-grid,
.comparison-grid,
.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.info-card,
.feature-card,
.product-card,
.quote-card,
.faq-card,
.contact-card,
.value-card,
.comparison-card,
.timeline-card,
.insight-card {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: 0 18px 45px rgba(7, 26, 45, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.feature-card:hover,
.product-card:hover,
.value-card:hover,
.insight-photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 191, 220, 0.24);
  box-shadow: 0 24px 58px rgba(7, 26, 45, 0.13);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-media {
  position: relative;
  margin: 0 0 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: #e9f5f8;
  border: 1px solid rgba(13, 39, 64, 0.08);
}

.product-media img,
.visual-panel img,
.hero-product-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-panel,
.visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-xl);
  background: #0d2942;
  box-shadow: 0 28px 90px rgba(7, 26, 45, 0.18);
}

.hero-product-panel img,
.visual-panel img {
  position: absolute;
  inset: 0;
}

.hero-product-panel img {
  animation: heroImageFloat 8s ease-in-out infinite;
}

.hero-product-panel::after,
.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 16, 28, 0.04), rgba(5, 16, 28, 0.32) 52%, rgba(5, 16, 28, 0.78));
}

.hero-product-copy,
.visual-caption {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #effcff;
}

.hero-product-copy h2,
.visual-caption h2 {
  max-width: 16ch;
  margin: 14px 0 0;
  font-size: clamp(1.85rem, 2.8vw, 2.85rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-product-copy p {
  max-width: 44ch;
  margin: 12px 0 0;
  color: rgba(238, 252, 255, 0.82);
  line-height: 1.7;
  font-family: var(--body-font);
}

.feature-card::before,
.product-card::before,
.insight-card::before,
.value-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 191, 220, 0.14), transparent 70%);
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(36, 191, 220, 0.16), rgba(13, 39, 64, 0.06));
  color: var(--navy);
}

.icon-chip svg {
  width: 28px;
  height: 28px;
}

.card-title {
  margin: 18px 0 0;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.card-copy {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.bullet-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.bullet-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  line-height: 1.55;
}

.bullet-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--aqua), #0f7894);
  box-shadow: 0 0 0 5px rgba(36, 191, 220, 0.12);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.product-actions .button {
  min-height: 44px;
  padding: 0 15px;
  font-size: 0.88rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #0f5f7b;
  background: rgba(36, 191, 220, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.process-flow-card {
  background:
    radial-gradient(circle at 20% 0%, rgba(126, 239, 255, 0.28), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(235, 248, 251, 0.96));
}

.flow-stage {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(155deg, #082038, #0f3d60 72%, #071a2d);
}

.flow-line {
  width: 100%;
  height: 170px;
}

.flow-track,
.flow-pulse {
  fill: none;
  stroke-linecap: round;
  stroke-width: 12;
}

.flow-track {
  stroke: rgba(153, 240, 255, 0.18);
}

.flow-pulse {
  stroke: #6feaff;
  stroke-dasharray: 80 930;
  filter: drop-shadow(0 0 12px rgba(111, 234, 255, 0.72));
  animation: waterFlow 4.6s linear infinite;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: -18px;
}

.flow-step {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  color: #effcff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.flow-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #062236;
  background: linear-gradient(135deg, #99f0ff, #30c8e2);
  font-weight: 900;
}

.flow-step h3 {
  margin: 14px 0 0;
  font-size: 1rem;
}

.flow-step p {
  margin: 8px 0 0;
  color: rgba(238, 252, 255, 0.76);
  line-height: 1.55;
  font-size: 0.9rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--card-shadow);
}

.stat-counter {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(13, 39, 64, 0.05), rgba(36, 191, 220, 0.1));
  border: 1px solid rgba(13, 39, 64, 0.08);
}

.stat-counter strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.06em;
}

.stat-counter span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.process-step {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 249, 251, 0.96));
  border: 1px solid rgba(13, 39, 64, 0.08);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--aqua), #0c6f8a);
  color: #f5fdff;
  font-weight: 900;
}

.process-step h3 {
  margin: 16px 0 0;
  font-size: 1.08rem;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.slider {
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.52s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.slider-buttons {
  display: flex;
  gap: 10px;
}

.slider-button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(7, 26, 45, 0.08);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(13, 39, 64, 0.18);
  transition: transform 0.24s ease, background 0.24s ease;
}

.slider-dots button.is-active {
  background: var(--aqua);
  transform: scale(1.2);
}

.slider-window {
  overflow: hidden;
  border-radius: 28px;
}

.banner-slider-card {
  padding: 18px;
}

.banner-slider-card .slider-controls {
  margin-top: 16px;
}

.slider-copy {
  margin-bottom: 18px;
}

.slider-copy h2 {
  margin: 0;
  font-size: 1.34rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.slider-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.68;
  font-family: var(--body-font);
}

.banner-slide {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: #0d2942;
}

.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 16, 28, 0.08), rgba(5, 16, 28, 0.42) 58%, rgba(5, 16, 28, 0.78) 100%);
}

.banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 460px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(7, 26, 45, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 55px rgba(6, 22, 37, 0.24);
  backdrop-filter: blur(18px);
}

.banner-overlay h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #effcff;
}

.banner-overlay p {
  margin: 12px 0 0;
  color: rgba(238, 252, 255, 0.82);
  line-height: 1.74;
  font-family: var(--body-font);
}

.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #effcff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.banner-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6feaff;
  box-shadow: 0 0 0 5px rgba(111, 234, 255, 0.12);
}

.home-hero-grid {
  align-items: stretch;
}

.page-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.note-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.note-card strong {
  display: block;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.note-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.quote-panel,
.testimonial-panel,
.product-panel,
.callout-panel {
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(142, 244, 255, 0.2), transparent 30%),
    linear-gradient(155deg, #0d2942, #103b5f 70%, #0b2239 100%);
  color: #eefcff;
}

.testimonial-panel p,
.product-panel p,
.callout-panel p,
.quote-panel p {
  margin: 0;
  line-height: 1.82;
  color: rgba(238, 252, 255, 0.82);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.testimonial-author strong,
.product-panel strong,
.quote-panel strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-author span,
.product-panel span,
.quote-panel span {
  display: block;
  margin-top: 4px;
  color: rgba(238, 252, 255, 0.68);
  font-size: 0.85rem;
}

.product-panel .specs,
.quote-panel .specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.spec {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spec strong {
  color: #91efff;
  font-size: 0.82rem;
}

.spec span {
  display: block;
  margin-top: 6px;
  color: rgba(238, 252, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

.comparison-card h3,
.timeline-card h3,
.faq-card h3,
.contact-card h3,
.value-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.comparison-card p,
.timeline-card p,
.faq-card p,
.contact-card p,
.value-card p,
.insight-card p,
.quote-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-list li {
  color: var(--muted);
  line-height: 1.68;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mini-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
  color: var(--muted);
}

.mini-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--aqua), #0f7894);
  box-shadow: 0 0 0 5px rgba(36, 191, 220, 0.12);
}

.hero-panel .mini-list li,
.quote-panel .mini-list li,
.callout-panel .mini-list li,
.product-panel .mini-list li,
.testimonial-panel .mini-list li {
  color: rgba(238, 252, 255, 0.8);
}

.hero-panel .mini-list li::before,
.quote-panel .mini-list li::before,
.callout-panel .mini-list li::before,
.product-panel .mini-list li::before,
.testimonial-panel .mini-list li::before {
  background: linear-gradient(180deg, #99f0ff, #32c9e4);
  box-shadow: 0 0 0 5px rgba(153, 240, 255, 0.12);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-card span {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(36, 191, 220, 0.18), rgba(13, 39, 64, 0.06));
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.quote-form {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(13, 39, 64, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.quote-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(243, 250, 252, 0.98));
}

.insight-stat {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(13, 39, 64, 0.05), rgba(36, 191, 220, 0.09));
  border: 1px solid rgba(13, 39, 64, 0.08);
}

.insight-stat strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.insight-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.insight-preview-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-photo-card,
.quote-tile {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(13, 39, 64, 0.08);
  box-shadow: 0 18px 45px rgba(7, 26, 45, 0.08);
}

.insight-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.insight-photo-card h3,
.quote-tile strong {
  display: block;
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.insight-photo-card p,
.quote-tile p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.68;
  font-family: var(--body-font);
}

.quote-tile strong {
  margin-top: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #0f6782;
  font-weight: 800;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #b23333;
  box-shadow: 0 0 0 4px rgba(178, 51, 51, 0.08);
}

.faq-list {
  display: grid;
  gap: 14px;
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--navy);
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(36, 191, 220, 0.1);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-copy {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.cta-band {
  padding: 28px;
  background:
    radial-gradient(circle at 10% 10%, rgba(126, 239, 255, 0.18), transparent 22%),
    linear-gradient(160deg, #0d2942, #103b5f 70%, #0b2239 100%);
  color: #eefcff;
  box-shadow: 0 24px 75px rgba(7, 26, 45, 0.18);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: center;
}

.cta-band h2 {
  margin: 14px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.cta-band p {
  margin: 12px 0 0;
  max-width: 58ch;
  color: rgba(238, 252, 255, 0.78);
  line-height: 1.78;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 10px 0 40px;
}

.footer-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--card-shadow);
}

.footer-card h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.footer-copy {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.74;
}

.footer-links {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.footer-links a,
.footer-links li {
  color: var(--muted);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 39, 64, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.float {
  animation: float 8.5s ease-in-out infinite;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.34s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes waterFlow {
  0% {
    stroke-dashoffset: 980;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes heroImageFloat {

  0%,
  100% {
    transform: scale(1.01) translateY(0);
  }

  50% {
    transform: scale(1.045) translateY(-8px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {

  .page-hero-grid,
  .split-grid,
  .cta-grid,
  .footer-grid,
  .contact-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .page-summary-grid {
    grid-template-columns: 1fr;
  }

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

  .grid-3,
  .product-grid,
  .process-row,
  .stats-grid,
  .insight-grid,
  .value-grid,
  .stats-band,
  .flow-steps,
  .insight-preview-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .site-header .container {
    padding: 12px 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(13, 39, 64, 0.08);
    box-shadow: 0 22px 48px rgba(7, 26, 45, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
  }

  .header-actions .button {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max-width), calc(100% - 16px));
    overflow: hidden;
  }

  .page-main {
    padding-bottom: 56px;
  }

  .page-hero {
    padding-top: 20px;
  }

  .hero-card,
  .hero-panel,
  .section-card,
  .cta-band,
  .footer-card {
    padding: 24px;
    border-radius: 26px;
  }

  .hero-card {
    padding-right: 16px;
    padding-left: 16px;
  }

  .banner-slider-card {
    padding: 14px;
  }

  .hero-card h1,
  .page-title {
    max-width: 10ch;
    font-size: clamp(2rem, 8.4vw, 2.72rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
  }

  .slider-window,
  .banner-slide {
    border-radius: 22px;
  }

  .banner-slide {
    min-height: 420px;
  }

  .hero-product-copy,
  .visual-caption {
    min-height: 420px;
    padding: 22px;
  }

  .hero-product-copy h2,
  .visual-caption h2 {
    max-width: 14ch;
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .banner-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .grid-3,
  .grid-4,
  .product-grid,
  .process-row,
  .stats-grid,
  .insight-grid,
  .value-grid,
  .stats-band,
  .flow-steps,
  .insight-preview-grid,
  .testimonial-grid,
  .field-group {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-panel,
  .section-card,
  .cta-band,
  .footer-card,
  .quote-card {
    min-width: 0;
    max-width: calc(100vw - 16px);
  }

  .page-hero-grid,
  .split-grid,
  .product-grid,
  .page-summary-grid {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    max-width: 100%;
  }

  .page-hero-grid>*,
  .split-grid>*,
  .product-grid>*,
  .page-summary-grid>* {
    min-width: 0;
  }

  .hero-card>*,
  .metric,
  .note-card {
    width: min(100%, 300px);
    max-width: 300px;
  }

  .hero-card p,
  .metric span,
  .note-card span {
    overflow-wrap: anywhere;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 0 0 auto;
    width: min(100%, 300px);
    max-width: 300px;
    min-height: 46px;
    padding: 0 16px;
  }

  .flow-stage {
    padding: 16px;
  }

  .flow-line {
    height: 110px;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

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

  .product-panel .specs,
  .quote-panel .specs {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}