:root {
  --cloud: #f6f5f0;
  --cloud-2: #fbfaf6;
  --pale-mint: #eef8f4;
  --mist-mint: #ddeee6;
  --forest: #27332e;
  --forest-deep: #183c34;
  --muted: #6f8f82;
  --mint: #a8d6c2;
  --line: rgba(39, 51, 46, 0.12);
  --line-soft: rgba(39, 51, 46, 0.08);
  --green: #0c5d51;
  --green-deep: #164f45;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.82);
  --white-line: rgba(255, 255, 255, 0.42);
  --ink: #172a25;
  --cream: #f4eee9;
  --cream-deep: #e2d8cf;
  --green-line: rgba(22, 79, 69, 0.2);
  --display: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  --body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: var(--display);
  --sans: var(--body);
  --type-heading-font: var(--display);
  --type-body-font: var(--body);
  --type-heading-color: var(--green-deep);
  --type-body-color: #25312d;
  --type-muted-color: #626c66;
  --section-space: 106px;
  --section-space-tablet: 78px;
  --section-space-mobile: 72px;
  --product-showcase-pad: clamp(42px, 5vw, 72px);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

/* Lenis takes over wheel/anchor scrolling when active; hand it full control. */
html.lenis,
html.lenis body {
  height: auto;
}

html.lenis {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: var(--body);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  background: var(--ink);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.fq-heading {
  color: var(--type-heading-color);
  font-family: var(--type-heading-font);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.fq-section-heading {
  color: var(--type-heading-color);
  font-family: var(--type-heading-font);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.fq-copy {
  color: var(--type-muted-color);
  font-family: var(--type-body-font);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

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

@keyframes hero-image-settle {
  from {
    opacity: 0.88;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity var(--reveal-duration, 760ms) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--reveal-duration, 760ms) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-reveal[data-motion="left"] {
  transform: translate3d(-34px, 0, 0);
}

.motion-reveal[data-motion="right"] {
  transform: translate3d(34px, 0, 0);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-reveal.motion-soft {
  transform: translate3d(0, 18px, 0);
  --reveal-duration: 1100ms;
}

.product-device-frame {
  animation: device-soft-float 6200ms ease-in-out infinite;
}

@keyframes device-soft-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/home-hero-mountain-sunrise-optimized.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: contrast(1.06) saturate(1.07) brightness(0.93);
  animation: hero-image-settle 1600ms ease-out both;
}

/* Cinematic scrim: dims the top for the floating nav, anchors the copy in the
   lower-left, lets the sunrise breathe on the right, and grounds the bottom edge. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 24, 21, 0.46) 0%, rgba(9, 24, 21, 0.1) 15%, rgba(9, 24, 21, 0) 38%, rgba(9, 24, 21, 0.16) 70%, rgba(20, 38, 33, 0.9) 100%),
    linear-gradient(98deg, rgba(9, 24, 21, 0.66) 0%, rgba(9, 24, 21, 0.36) 28%, rgba(9, 24, 21, 0.06) 56%, rgba(9, 24, 21, 0) 78%),
    radial-gradient(150% 120% at 12% 88%, rgba(5, 18, 15, 0.52) 0%, rgba(5, 18, 15, 0) 50%);
}

/* Fine film grain — kills the flat "stock template" look. */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 20;
  width: min(1380px, calc(100% - 64px));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateX(-50%);
  transition: transform 260ms ease, opacity 220ms ease, background 220ms ease, border-color 220ms ease,
    box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(250, 246, 239, 0.76);
  box-shadow: 0 18px 52px rgba(12, 34, 29, 0.16);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--white);
  line-height: 1;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 158px;
  height: auto;
  mix-blend-mode: multiply;
  filter: none;
  transition: filter 0.3s ease;
}

/* White logo only on the home hero before scrolling (dark photo behind it). */
.has-dark-hero .site-header:not(.is-scrolled) .brand-mark {
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(52px, 5.4vw, 86px);
  margin-left: auto;
  font-size: 15px;
  font-weight: 400;
  min-width: 0;
}

.nav a {
  color: rgba(39, 62, 56, 0.92);
  white-space: nowrap;
}

/* Navbar links are dark by default (light subpages + scrolled hero). They turn
   white only over the home hero photo, before scrolling. Desktop only — the
   mobile menu is a light panel handled separately. */
@media (min-width: 921px) {
  .nav a:not(.waitlist-small) {
    position: relative;
    color: rgba(39, 62, 56, 0.92);
    transition: color 0.22s ease;
  }

  .nav a:not(.waitlist-small)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav a:not(.waitlist-small):hover {
    color: var(--forest-deep);
  }

  .nav a:not(.waitlist-small):hover::after {
    transform: scaleX(1);
  }

  .has-dark-hero .site-header:not(.is-scrolled) .nav a:not(.waitlist-small) {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 12px rgba(9, 24, 21, 0.38);
  }

  .has-dark-hero .site-header:not(.is-scrolled) .nav a:not(.waitlist-small):hover {
    color: #ffffff;
  }
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--forest-deep);
  box-shadow: none;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease;
}

.has-dark-hero .site-header:not(.is-scrolled) .nav-toggle {
  color: #ffffff;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  opacity: 0.82;
}

.nav-toggle-line {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4.5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.submit,
.waitlist-small,
.button,
.technology-cta,
.applications-cta,
.waitlist-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(24, 60, 52, 0.08);
  background: var(--forest-deep);
  color: var(--cloud);
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(24, 60, 52, 0.14);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
}

.submit:hover,
.waitlist-small:hover,
.button:hover,
.technology-cta:hover,
.applications-cta:hover,
.waitlist-submit:hover {
  background: var(--forest);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(24, 60, 52, 0.16);
}

.waitlist-small {
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 26px -8px rgba(8, 28, 23, 0.6);
}

.nav .waitlist-small {
  color: var(--white);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 760px;
  padding: 36px 0 112px;
  animation: hero-copy-enter 900ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 12px rgba(9, 24, 21, 0.45);
}

.hero-kicker-line {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 214, 194, 0.95), rgba(168, 214, 194, 0.1));
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 92px);
  line-height: 1.03;
  font-weight: 300;
  letter-spacing: -0.06em;
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 2px 26px rgba(9, 24, 21, 0.34);
}

.subline {
  margin: 26px 0 0;
  max-width: 32ch;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 16px rgba(9, 24, 21, 0.42);
}

.actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 46px;
}

.button {
  min-height: 56px;
  gap: 14px;
  padding: 0 32px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-primary {
  min-width: 0;
  background: var(--cream);
  color: var(--forest-deep);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 42px -14px rgba(7, 24, 20, 0.66);
  text-shadow: none;
}

.button-primary:hover {
  background: #fbf8f3;
  color: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 26px 52px -16px rgba(7, 24, 20, 0.72);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 0 8px;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 14px rgba(9, 24, 21, 0.45);
  transition: color 0.2s ease;
}

.hero-link:hover {
  color: #ffffff;
}

.hero-link-arrow {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.hero-link:hover .hero-link-arrow {
  transform: translateX(5px);
}

.button-secondary {
  min-width: 202px;
  background: rgba(250, 246, 239, 0.78);
  border-color: rgba(255, 255, 255, 0.5);
  color: #173c31;
  box-shadow: 0 12px 30px rgba(12, 34, 29, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  text-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 253, 247, 0.9);
  border-color: rgba(255, 255, 255, 0.68);
  color: #143f35;
  box-shadow: 0 16px 34px rgba(12, 34, 29, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transform: translateY(-1px);
}

.arrow {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.why-section {
  background: #faf6ef;
  color: #174c3c;
  padding: clamp(60px, 6vw, 82px) 0 40px;
}

.why-inner {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.83fr);
  gap: 88px;
  align-items: start;
}

.why-copy {
  max-width: 590px;
}

.kicker {
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(23, 76, 60, 0.86);
  text-transform: uppercase;
}

.why-title {
  margin: 0;
  max-width: 540px;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 500;
  color: #1f312d;
}

.why-text {
  margin: 18px 0 0;
  max-width: 480px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(31, 49, 45, 0.72);
}

.product-stage {
  margin-top: 20px;
  margin-left: -56px;
}

.product-stage-image {
  display: block;
  width: min(470px, calc(100% + 44px));
  height: auto;
}

.benefits {
  display: grid;
  gap: 0;
  padding-top: 30px;
}

.benefit {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(23, 76, 60, 0.16);
}

.benefit+.benefit {
  padding-top: 30px;
}

.benefit:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.benefits-waitlist-cta {
  padding: 10px 0 0 126px;
}

.benefits-waitlist-button {
  margin-top: 0;
  box-shadow: none;
}

.benefits-waitlist-button:hover {
  box-shadow: none;
}

.benefit-icon {
  display: block;
  width: 100px;
  height: 100px;
}

.benefit-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.05;
  font-weight: 500;
  color: #174c3c;
}

.benefit-text {
  margin: 9px 0 0;
  max-width: 330px;
  font-size: 16px;
  line-height: 1.52;
  font-weight: 400;
  color: rgba(31, 49, 45, 0.72);
}

.why-steps-section {
  display: none;
  background: #fbf7f0;
  padding: 46px 0;
}

.why-steps-inner {
  width: min(1160px, calc(100% - 96px));
  margin: 0 auto;
}

.why-steps-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 48px);
}

.why-step {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #174c3c;
}

.why-step-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 197, 138, 0.82);
  border-radius: 999px;
  color: #c4a96d;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.why-step-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.why-step h3 {
  margin: 0;
  color: #174c3c;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.why-step p {
  margin: 5px 0 0;
  color: rgba(31, 49, 45, 0.68);
  font-size: 13px;
  line-height: 1.3;
}

.why-step-chevron {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.5;
}

.why-step-icon,
.why-step-chevron {
  filter: brightness(0) saturate(100%) invert(27%) sepia(24%) saturate(972%) hue-rotate(117deg) brightness(89%) contrast(86%);
}

.technology-section {
  position: relative;
  overflow: hidden;
  background: #fbf7f0 url("assets/wassertest-background.png") center / cover no-repeat;
  color: #174c3c;
  padding: clamp(88px, 8vw, 132px) 0;
}

.water-test-wave {
  display: none;
}

.technology-inner {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 96px));
  margin: 0 auto;
}

.water-test-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.86fr);
  gap: clamp(56px, 7vw, 116px);
  align-items: center;
}

.water-test-copy {
  max-width: 650px;
}

.technology-kicker {
  margin: 0 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #174c3c;
}

.technology-kicker::after {
  content: none;
}

.water-test-kicker-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 163, 95, 0.9);
  border-radius: 999px;
  color: #c9a35f;
}

.water-test-kicker-icon svg {
  width: 26px;
  height: 26px;
}

.technology-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 4.8vw, 74px);
  line-height: 1.08;
  font-weight: 500;
  color: #174c3c;
}

.water-test-title span {
  display: block;
  white-space: nowrap;
}

.water-test-rule {
  display: block;
  width: 72px;
  height: 2px;
  margin: 30px 0 30px;
  background: #c9a35f;
}

.technology-subline {
  margin: 0;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.62;
  font-weight: 400;
  color: rgba(31, 49, 45, 0.84);
}

.water-test-discount-button {
  position: relative;
  width: min(100%, 360px);
  min-height: 58px;
  margin-top: 30px;
  padding: 0 84px 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 74, 63, 0.14);
  border-radius: 16px;
  background: var(--forest-deep);
  color: #fffaf3;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 28px rgba(12, 54, 47, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.water-test-discount-button:hover {
  background: var(--forest);
  box-shadow: 0 18px 34px rgba(12, 54, 47, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.benefits-waitlist-button,
.benefits-waitlist-button:hover {
  box-shadow: none;
}

.water-test-learn-button {
  width: fit-content;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(24, 74, 63, 0.24);
  border-radius: 16px;
  background: var(--forest-deep);
  color: #fffaf3;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(12, 54, 47, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.water-test-learn-button:hover {
  border-color: rgba(24, 74, 63, 0.18);
  background: var(--forest);
  box-shadow: 0 16px 32px rgba(12, 54, 47, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.water-test-learn-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.water-test-discount-badge {
  position: absolute;
  top: -11px;
  right: 26px;
  width: 56px;
  height: 60px;
  display: grid;
  place-items: center;
  padding-bottom: 7px;
  background: #ddc084;
  color: #135448;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(78, 58, 25, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
}

.water-test-proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
  max-width: 560px;
}

.water-test-proof {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 22px;
  text-align: center;
}

.water-test-proof+.water-test-proof {
  border-left: 1px solid rgba(201, 163, 95, 0.3);
}

.water-test-proof-icon {
  display: block;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
}

.water-test-proof-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.water-test-proof p {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  color: rgba(31, 49, 45, 0.88);
}

.water-test-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 163, 95, 0.78);
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.86);
  box-shadow: 0 28px 74px rgba(56, 42, 26, 0.15);
}

.water-test-panel::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: 1;
  border: 1px solid rgba(201, 163, 95, 0.42);
  border-radius: 24px;
  pointer-events: none;
}

.water-test-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.product-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(200, 231, 208, 0.42), transparent 30%),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(180deg, #fbf7f0 0%, #f7efe7 54%, #fbf7f0 100%);
  color: #13202b;
  padding: calc(var(--section-space) - var(--product-showcase-pad)) 0 56px;
}

.product-section::before {
  content: "";
  position: absolute;
  /* Anchored to a fixed offset (not a % of the section) so the decorative wave
     stays put when an accordion card expands and the section grows taller. */
  top: 240px;
  left: 50%;
  width: calc(100vw + 2px);
  height: 430px;
  z-index: 0;
  background: url("freqwell_assets/frequency_background_hero_transparent.png") center / cover no-repeat;
  opacity: 0.52;
  filter: drop-shadow(0 0 18px rgba(185, 230, 202, 0.32));
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.product-inner {
  position: relative;
  z-index: 1;
  width: min(1520px, calc(100% - 56px));
  margin: 0 auto;
}

.product-showcase {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: start;
  overflow: hidden;
  isolation: isolate;
  padding: var(--product-showcase-pad);
}

.product-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  text-align: left;
}

.product-kicker {
  margin: 0;
  color: #174c3c;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.product-kicker::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin: 13px 0 0;
  background: #174c3c;
}

.product-title {
  margin: 30px 0 0;
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(56px, 5vw, 78px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #174c3c;
}

.product-subline {
  margin: 22px 0 0;
  max-width: 500px;
  color: rgba(19, 32, 43, 0.72);
  font-size: 19px;
  line-height: 1.55;
}

.product-visual {
  /* Anchored (not sticky): a sticky device shifted vertically when an accordion
     card expanded and changed the showcase height. Keep it fixed in place. */
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  align-self: start;
  margin: -48px -96px -72px 0;
  overflow: hidden;
}

.product-frequency {
  position: absolute;
  z-index: 0;
  width: min(1580px, 118vw);
  max-width: none;
  opacity: 0;
  filter: drop-shadow(0 0 18px rgba(185, 230, 202, 0.36));
}

.product-device-frame {
  position: relative;
  z-index: 1;
  width: clamp(420px, 35vw, 580px);
  height: clamp(525px, 43.75vw, 725px);
  transform: translateX(12%);
  filter: drop-shadow(0 42px 44px rgba(73, 55, 38, 0.22));
}

.product-device {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: auto;
  height: 100%;
  max-width: none;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 260ms ease;
}

.product-device.is-active {
  opacity: 1;
}

.product-info-stack {
  display: grid;
  align-items: start;
  justify-items: start;
  grid-template-columns: minmax(0, 520px);
  gap: 14px;
  margin-top: 34px;
  overflow-anchor: none;
}

.product-info-card {
  width: 100%;
  overflow-anchor: none;
  border: 1px solid rgba(31, 49, 45, 0.08);
  border-radius: 24px;
  background: rgba(239, 240, 238, 0.86);
  box-shadow: 0 14px 34px rgba(31, 49, 45, 0.07);
  overflow: hidden;
}

.product-info-card p {
  margin: 0;
  color: rgba(19, 32, 43, 0.86);
  font-size: 18px;
  line-height: 1.45;
}

.product-info-card strong {
  color: #13202b;
  font-weight: 700;
}

.product-info-card summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  color: #1d2b27;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  transition: min-height 820ms cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-info-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.product-info-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.product-info-title {
  white-space: normal;
}

.product-info-inline-copy {
  display: none;
  margin-left: 4px;
  color: rgba(19, 32, 43, 0.72);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product-info-color-dot {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: #f8f5ef;
  box-shadow: inset 0 0 0 1px rgba(31, 49, 45, 0.14), 0 5px 14px rgba(29, 42, 36, 0.08);
}

.product-info-color-dot-blue {
  background: #5f78a8;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.42), 0 5px 14px rgba(29, 42, 36, 0.08);
}

.product-info-card summary::-webkit-details-marker {
  display: none;
}

.product-info-card summary:focus {
  outline: none;
}

.product-info-card summary:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(23, 76, 60, 0.34);
  border-radius: inherit;
}

.product-info-card[open] summary {
  min-height: 74px;
  align-items: flex-start;
  padding-top: 22px;
  padding-bottom: 20px;
}

.product-info-card[open] .product-info-title::after {
  content: ".";
}

.product-info-card[open] .product-info-inline-copy {
  display: block;
  margin: 6px 0 0;
}

.product-frequency-card[open] summary {
  align-items: center;
  padding-bottom: 10px;
}

.product-frequency-card[open] .product-info-title::after {
  content: none;
}

.product-frequency-card[open] .product-info-inline-copy {
  display: none;
}

.product-frequency-card[open] .product-info-plus {
  display: block;
}

.product-frequency-card[open] .product-info-plus::after {
  content: none;
}

.product-frequency-card[open] summary::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  opacity: 0.8;
  transform: rotate(45deg) translateY(3px);
}

.product-info-card[open] .product-info-plus {
  display: none;
}

.product-frequency-card[open] .product-info-plus {
  display: block;
}

.product-color-card[open] summary {
  overflow: visible;
}

.product-info-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-info-card[open] .product-info-content {
  grid-template-rows: 1fr;
}

.product-info-content>* {
  min-height: 0;
  overflow: hidden;
}

.product-info-content p {
  padding: 0 24px 18px;
}

.product-frequency-list {
  margin: 0;
  padding: 4px 24px 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  list-style: none;
}

.product-frequency-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  align-items: baseline;
  column-gap: 13px;
  padding: 13px 2px;
  border-top: 1px solid rgba(31, 49, 45, 0.09);
}

/* First row of the two-column grid has no divider above it. */
.product-frequency-list li:nth-child(-n + 2) {
  border-top: 0;
}

.product-frequency-list i {
  grid-row: 1 / span 2;
  align-self: start;
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--frequency-color);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7);
}

.product-frequency-list strong {
  grid-column: 2;
  color: #16231f;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.product-frequency-list span {
  grid-column: 2;
  margin-top: 3px;
  min-width: 0;
  font-weight: 500;
  color: rgba(19, 32, 43, 0.56);
  font-size: 11.5px;
  line-height: 1.32;
}

.product-info-plus {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 999px;
  opacity: 0.86;
}

.product-info-plus::before,
.product-info-plus::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.product-info-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.product-colors {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 24px 24px;
}

.product-color-option {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border-radius: 999px;
  color: rgba(19, 32, 43, 0.72);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.product-color-option.is-active {
  color: #13202b;
}

.product-color-option[data-color="blue"].is-active {
  color: #173451;
}

.product-color-option:focus-visible {
  outline: 2px solid rgba(23, 76, 60, 0.42);
  outline-offset: 3px;
}

.product-color-swatch {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 999px;
  border: 0;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(31, 49, 45, 0.12), 0 6px 16px rgba(29, 42, 36, 0.07);
}

.product-color-swatch::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
}

.product-color-option.is-active .product-color-swatch {
  box-shadow: 0 0 0 3px #f8f5ef, 0 0 0 5px #2f6f5d, 0 6px 16px rgba(29, 42, 36, 0.08);
}

.product-color-swatch-white::after {
  background: #f8f5ef;
}

.product-color-swatch-blue {
  border-color: rgba(61, 93, 140, 0.86);
}

.product-color-swatch-blue::after {
  background: #5f78a8;
}

.product-gallery {
  --gallery-gap: 18px;
  --gallery-visible: 4.3;
  position: relative;
  margin-top: 18px;
  padding-bottom: 26px;
}

.product-gallery-viewport {
  overflow: hidden;
  border-radius: 22px;
}

.product-gallery-track {
  display: flex;
  gap: var(--gallery-gap);
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-gallery-card {
  flex: 0 0 calc((100% - (var(--gallery-gap) * (var(--gallery-visible) - 1))) / var(--gallery-visible));
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 32px rgba(37, 56, 50, 0.09);
}

/* Inner image zoom: the frame stays fixed, only the image scales — slowly. */
.product-gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1800ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-gallery-card:hover .product-gallery-img {
  transform: scale(1.07);
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 56, 50, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(37, 56, 50, 0.12);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.product-gallery-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

.product-gallery-arrow:focus-visible {
  outline: 2px solid rgba(23, 76, 60, 0.42);
  outline-offset: 4px;
}

.product-gallery-arrow img {
  width: 22px;
  height: 22px;
}

.product-gallery-arrow-left {
  left: -28px;
}

.product-gallery-arrow-right {
  right: -28px;
}

.product-tech-section {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding-top: 0;
  overflow: visible;
  background: #faf6ef;
}

.product-tech-surface {
  position: relative;
  overflow: visible;
  isolation: isolate;
  color: #fff7eb;
  padding: clamp(76px, 6.2vw, 104px) 0 clamp(92px, 7vw, 120px);
}

.product-tech-wave-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 0;
  pointer-events: none;
}

.product-tech-wave-shadow {
  fill: rgba(18, 43, 34, 0.22);
}

.product-tech-wave-fill {
  fill: url("#productTechGreen");
}

.product-tech-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 72px, 1320px);
  margin: 0 auto;
}

.product-tech-frequency {
  position: absolute;
  top: 118px;
  right: -14vw;
  width: min(1160px, 82vw);
  max-width: none;
  opacity: 0.38;
  filter: saturate(1.25) drop-shadow(0 0 20px rgba(213, 244, 186, 0.34));
  pointer-events: none;
}

.product-tech-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
  gap: clamp(44px, 7vw, 108px);
  align-items: start;
}

.product-tech-copy {
  max-width: 760px;
}

.product-tech-kicker {
  margin: 0;
  color: #d6c58a;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.product-tech-copy h2 {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 4.6vw, 70px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #fff7eb;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.product-tech-copy p {
  margin: 24px 0 0;
  max-width: 680px;
  color: rgba(255, 251, 244, 0.86);
  font-size: 17.5px;
  line-height: 1.55;
}

.product-tech-copy p + p {
  margin-top: 14px;
}

.product-tech-device {
  position: relative;
  z-index: 2;
  width: min(100%, 350px);
  justify-self: center;
  margin-top: -26px;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 24px rgba(203, 245, 183, 0.25));
}

.product-tech-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 44px auto 0;
  max-width: 1060px;
}

/* Compact horizontal spec strip: icon left, title + caption right. */
.product-tech-feature {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  column-gap: 14px;
  row-gap: 6px;
  padding: 2px 26px;
  text-align: left;
}

.product-tech-feature+.product-tech-feature {
  border-left: 1px solid rgba(214, 197, 138, 0.22);
}

.product-tech-feature img,
.product-tech-pill img,
.product-tech-step img,
.product-tech-cta img,
.product-tech-chevron {
  filter: brightness(0) saturate(100%) invert(88%) sepia(24%) saturate(507%) hue-rotate(20deg) brightness(95%) contrast(88%);
}

.product-tech-feature img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 1px;
}

.product-tech-feature h3 {
  grid-column: 2;
  margin: 0;
  color: #fff7eb;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.product-tech-feature p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 251, 244, 0.6);
  font-size: 13px;
  line-height: 1.38;
}

.product-tech-pill {
  width: fit-content;
  max-width: 100%;
  margin: 38px auto 0;
  padding: 10px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(214, 197, 138, 0.58);
  border-radius: 999px;
  color: rgba(255, 251, 244, 0.84);
  font-size: 16px;
  line-height: 1.4;
  background: rgba(9, 33, 28, 0.3);
  backdrop-filter: blur(10px);
}

.product-tech-pill img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.product-tech-pill span+span::before {
  content: "•";
  margin-right: 16px;
  color: #d6c58a;
}

.product-tech-steps {
  display: grid;
  grid-template-columns: 1fr 22px 1fr 22px 1.1fr minmax(250px, 0.92fr);
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid rgba(214, 197, 138, 0.4);
  border-radius: 18px;
  background: rgba(4, 24, 20, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 251, 244, 0.08);
  backdrop-filter: blur(12px);
}

.product-tech-step {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
}

.product-tech-step-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 197, 138, 0.82);
  border-radius: 999px;
  color: #d6c58a;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.product-tech-step img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.product-tech-step h3 {
  margin: 0;
  color: #fff7eb;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.product-tech-step p {
  margin: 5px 0 0;
  color: rgba(255, 251, 244, 0.68);
  font-size: 13px;
  line-height: 1.3;
}

.product-tech-chevron {
  width: 18px;
  height: 18px;
  justify-self: center;
  opacity: 0.78;
}

.product-tech-cta {
  min-height: 62px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(214, 197, 138, 0.72);
  border-radius: 14px;
  color: #f6ecc8;
  font-size: 16px;
  font-weight: 700;
  background: rgba(255, 251, 244, 0.03);
}

.product-tech-cta img {
  width: 22px;
  height: 22px;
}

.product-tech-disclaimer {
  margin: 34px 0 0;
  color: rgba(255, 251, 244, 0.7);
  font-size: 15px;
  text-align: center;
}

.applications-section {
  position: relative;
  z-index: 1;
  background: #faf6ef;
  color: #174c3c;
  padding: var(--section-space) 0;
}

.applications-inner {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}

.applications-kicker {
  margin: 0 0 26px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #174c3c;
  text-transform: uppercase;
}

.applications-title {
  margin: 0;
  max-width: 820px;
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1.02;
  font-weight: 500;
  color: #174c3c;
}

.applications-subline {
  margin: 28px 0 0;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(31, 49, 45, 0.78);
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.application-card {
  --card-image: url("assets/home-hero-background.png");
  --card-overlay:
    linear-gradient(180deg, rgba(18, 31, 26, 0.1) 0%, rgba(14, 30, 26, 0.68) 54%, rgba(9, 24, 21, 0.92) 100%),
    linear-gradient(135deg, rgba(138, 96, 42, 0.42), rgba(23, 76, 60, 0.62));
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  border-radius: 20px;
  color: #ffffff;
  isolation: isolate;
}

.application-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--card-overlay), var(--card-image);
  background-size: cover;
  background-position: var(--card-position, center);
}

.application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 24, 22, 0.24));
}

.application-card-focus {
  --card-overlay:
    linear-gradient(180deg, rgba(11, 57, 58, 0.24) 0%, rgba(5, 67, 66, 0.76) 58%, rgba(3, 45, 43, 0.94) 100%),
    linear-gradient(135deg, rgba(6, 87, 83, 0.74), rgba(20, 71, 74, 0.58));
  --card-position: 38% center;
}

.application-card-balance {
  --card-overlay:
    linear-gradient(180deg, rgba(43, 66, 50, 0.2) 0%, rgba(21, 55, 45, 0.72) 56%, rgba(9, 42, 34, 0.94) 100%),
    linear-gradient(135deg, rgba(198, 145, 89, 0.42), rgba(20, 70, 51, 0.72));
  --card-position: 55% center;
}

.application-card-sleep {
  --card-overlay:
    linear-gradient(180deg, rgba(99, 60, 150, 0.5) 0%, rgba(63, 54, 134, 0.72) 50%, rgba(13, 27, 54, 0.96) 100%),
    linear-gradient(135deg, rgba(128, 70, 154, 0.62), rgba(18, 36, 73, 0.74));
  --card-position: 78% center;
}

.application-card-inner {
  width: 100%;
  flex: 1;
  height: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 52px 40px 38px;
}

.application-icon {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.application-card-title {
  margin: 0;
  min-height: 76px;
  display: flex;
  align-items: flex-start;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
}

.application-card-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.48;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.application-card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.applications-cta {
  gap: 28px;
  min-width: 278px;
  min-height: 64px;
  margin: 44px auto 0;
  padding: 0 38px;
  font-size: 22px;
}

.applications-cta-wrap {
  display: flex;
  justify-content: center;
}

.applications-arrow {
  width: 25px;
  height: 25px;
}

.waitlist-section {
  position: relative;
  overflow: hidden;
  background: #fbf4eb;
  padding: 0;
}

.waitlist-wave {
  position: relative;
  width: 100%;
  min-height: 980px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.waitlist-wave-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.waitlist-wave-shadow {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.waitlist-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px minmax(390px, 0.78fr);
  gap: 44px;
  align-items: center;
  padding: 88px 0 96px;
}

.waitlist-kicker {
  margin: 0 0 28px;
  color: #d3ad63;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.waitlist-kicker::after {
  content: "";
  display: block;
  width: 62px;
  height: 1px;
  margin-top: 16px;
  background: #d3ad63;
}

.waitlist-copy {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.waitlist-title {
  margin: 0;
  max-width: 540px;
  font-family: var(--serif);
  font-size: 74px;
  line-height: 0.98;
  font-weight: 500;
  color: #fbf3e6;
}

.waitlist-text {
  margin: 28px 0 0;
  max-width: 560px;
  color: rgba(251, 243, 230, 0.86);
  font-size: 20px;
  line-height: 1.48;
  font-weight: 400;
}

.waitlist-benefits {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 38px;
}

.waitlist-benefit {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 94px;
  padding: 0 24px;
  color: #f4d78b;
  text-align: center;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;
}

.waitlist-benefit+.waitlist-benefit {
  border-left: 1px solid rgba(244, 215, 139, 0.42);
}

.waitlist-benefit-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.waitlist-badge {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  width: 236px;
  height: 236px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 999px;
  border: 2px solid #d3ad63;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.94), rgba(250, 246, 239, 0.94) 58%, rgba(241, 226, 199, 0.94) 100%);
  box-shadow: 0 18px 34px rgba(7, 24, 20, 0.26), inset 0 0 0 7px rgba(211, 173, 99, 0.13);
}

.waitlist-badge::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px dotted rgba(196, 145, 55, 0.72);
  border-radius: inherit;
}

.waitlist-badge-content {
  position: relative;
  z-index: 1;
  color: #263a33;
  text-align: center;
  max-width: 78%;
}

.waitlist-discount {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 78px;
  line-height: 0.9;
  font-weight: 500;
  color: #c49137;
}

.waitlist-badge-text {
  display: block;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0.12em;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.waitlist-badge-text::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  margin: 18px auto 0;
  background: #c49137;
}

.waitlist-form-card {
  position: relative;
  z-index: 2;
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  padding: 46px 44px 44px;
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 24px 50px rgba(9, 28, 22, 0.18);
  color: #253832;
}

.waitlist-form {
  display: grid;
  gap: 24px;
}

.waitlist-field {
  display: grid;
  gap: 10px;
}

.waitlist-label {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
  color: #253832;
}

.waitlist-input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  padding: 0 18px;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.2;
  color: #253832;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.waitlist-input::placeholder {
  color: rgba(37, 56, 50, 0.46);
}

.waitlist-input:focus {
  border-color: var(--muted);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(168, 214, 194, 0.22);
}

.waitlist-checkbox {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  color: rgba(37, 56, 50, 0.76);
  font-size: 15px;
  line-height: 1.48;
}

.waitlist-checkbox input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: #173c31;
}

.waitlist-submit {
  width: 100%;
  min-height: 64px;
  margin-top: 8px;
  padding: 16px 22px;
  font-size: 20px;
}

.waitlist-status {
  min-height: 1.4em;
  margin: -8px 0 0;
  color: #506a5f;
  font-family: var(--body);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.waitlist-status[data-state="success"] {
  color: #1d6b4f;
}

.waitlist-status[data-state="error"] {
  color: #9b3b31;
}

.waitlist-submit:disabled {
  cursor: progress;
  opacity: 0.76;
}

.calendly-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 999px;
  background: rgba(22, 79, 69, 0.96);
  color: #fffaf3;
  font-family: var(--body);
  box-shadow: 0 20px 48px rgba(22, 79, 69, 0.26), 0 0 0 0 rgba(168, 214, 194, 0.28);
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: calendly-soft-pulse 2200ms ease-out 4200ms 2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.calendly-float:hover {
  background: #183c34;
  box-shadow: 0 24px 58px rgba(22, 79, 69, 0.3);
  transform: translateY(-2px);
}

.calendly-float-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.14);
  color: #d8e9de;
}

.calendly-float-icon svg {
  width: 22px;
  height: 22px;
}

.calendly-float-copy {
  display: grid;
  gap: 1px;
  text-align: left;
  line-height: 1.15;
}

.calendly-float-copy strong {
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
}

.calendly-float-copy small {
  color: rgba(255, 250, 243, 0.72);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes calendly-soft-pulse {
  0% {
    box-shadow: 0 20px 48px rgba(22, 79, 69, 0.26), 0 0 0 0 rgba(168, 214, 194, 0.28);
  }

  70% {
    box-shadow: 0 20px 48px rgba(22, 79, 69, 0.26), 0 0 0 14px rgba(168, 214, 194, 0);
  }

  100% {
    box-shadow: 0 20px 48px rgba(22, 79, 69, 0.26), 0 0 0 0 rgba(168, 214, 194, 0);
  }
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  background:
    linear-gradient(180deg, #fbf4eb 0%, rgba(251, 244, 235, 0.82) 18%, rgba(251, 244, 235, 0.08) 42%),
    url("assets/footer-background.png") center / cover no-repeat,
    #fbf4eb;
  color: #22332e;
  padding: 98px 0 42px;
  box-shadow: none;
}

.footer-inner {
  width: min(1500px, calc(100% - 128px));
  margin: 0 auto;
  padding-top: 96px;
}

.footer-main {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(560px, 1.25fr);
  align-items: start;
  gap: clamp(80px, 9vw, 170px);
}

.footer-brand {
  display: grid;
  justify-items: start;
  min-height: 178px;
}

.footer-logo-link {
  display: flex;
  align-items: flex-start;
  align-self: start;
  justify-content: flex-start;
  width: fit-content;
  height: auto;
}

.footer-logo {
  display: block;
  width: clamp(320px, 26vw, 470px);
  height: auto;
  aspect-ratio: 1900 / 400;
  object-fit: contain;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: clamp(68px, 8vw, 130px);
  align-items: start;
  padding-top: 8px;
}

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

.footer-list a {
  display: inline-block;
  color: rgba(34, 51, 46, 0.9);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 500;
}

.footer-divider {
  height: 1px;
  margin: 68px 0 54px;
  background: rgba(34, 51, 46, 0.16);
}

.footer-lower {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.footer-claim {
  margin: 0;
  color: #174c3c;
  font-family: var(--serif);
  font-size: clamp(28px, 2.3vw, 42px);
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 8px 0 30px;
}

.footer-social {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(196, 169, 122, 0.86);
  border-radius: 999px;
  color: #174c3c;
  background: rgba(255, 252, 246, 0.36);
  box-shadow: 0 10px 28px rgba(54, 42, 28, 0.05);
}

.footer-social svg {
  display: block;
  width: 27px;
  height: 27px;
}

.footer-copyright {
  margin: 0;
  width: min(560px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  color: rgba(34, 51, 46, 0.7);
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
}

.footer-copyright::before,
.footer-copyright::after {
  content: "";
  width: 82px;
  height: 1px;
  flex: 0 1 82px;
  background: rgba(196, 169, 122, 0.52);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 80;
  pointer-events: none;
  color: #174c3c;
}

.cookie-banner-inner {
  width: min(720px, 100%);
  margin-left: auto;
  padding: 18px 20px 18px;
  pointer-events: auto;
  border: 1px solid rgba(186, 151, 85, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 251, 244, 0.98), rgba(250, 246, 239, 0.96)),
    #faf6ef;
  box-shadow: 0 22px 58px rgba(24, 60, 52, 0.16);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-banner.is-hiding .cookie-banner-inner {
  opacity: 0;
  transform: translateY(10px);
}

.cookie-copy {
  max-width: 600px;
}

.cookie-kicker {
  margin: 0 0 6px;
  color: #b08c45;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1;
  font-weight: 500;
}

.cookie-copy p {
  margin: 8px 0 0;
  color: rgba(31, 49, 45, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

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

.cookie-option {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 76, 60, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
}

.cookie-option-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(176, 140, 69, 0.14);
  color: #b08c45;
  font-weight: 800;
}

.cookie-option strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
}

.cookie-option small {
  display: block;
  margin-top: 4px;
  color: rgba(31, 49, 45, 0.68);
  font-size: 11px;
  line-height: 1.3;
}

.cookie-toggle {
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 auto;
  margin-left: auto;
  border: 1px solid rgba(23, 76, 60, 0.16);
  border-radius: 999px;
  background: #dedbd3;
  box-shadow: inset 0 1px 3px rgba(24, 60, 52, 0.16);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-switch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(24, 60, 52, 0.18);
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-switch {
  border-color: rgba(23, 76, 60, 0.32);
  background: #174c3c;
}

.cookie-toggle input:checked + .cookie-switch::before {
  transform: translateX(18px);
}

.cookie-toggle input:focus-visible + .cookie-switch,
.cookie-button:focus-visible,
.cookie-privacy-link:focus-visible {
  outline: 2px solid rgba(176, 140, 69, 0.75);
  outline-offset: 3px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(176, 140, 69, 0.2);
}

.cookie-privacy-link {
  color: #174c3c;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 14px;
  font: 600 12px/1 var(--body);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.cookie-button-ghost {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #174c3c;
}

.cookie-button-outline {
  border: 1px solid rgba(176, 140, 69, 0.72);
  background: transparent;
  color: #174c3c;
}

.cookie-button-primary {
  border: 1px solid #174c3c;
  background: #174c3c;
  color: #faf6ef;
  box-shadow: 0 12px 24px rgba(24, 60, 52, 0.14);
}

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

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

@media (max-width: 1180px) {
  .product-inner {
    width: min(100% - 48px, 1040px);
  }

  .product-showcase {
    min-height: 700px;
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    padding: 46px;
  }

  .product-visual {
    margin-right: -82px;
  }

  .product-device-frame {
    width: clamp(420px, 44vw, 590px);
    height: clamp(525px, 55vw, 738px);
  }

  .product-gallery {
    --gallery-visible: 3;
  }

  .product-tech-feature {
    padding: 0 22px;
  }

  .product-frequency-list {
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-frequency-list li {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-tech-steps {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .water-test-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .water-test-title span {
    white-space: normal;
  }

  .water-test-copy,
  .water-test-panel {
    max-width: 760px;
    margin: 0 auto;
  }

  .product-tech-chevron {
    display: none;
  }

  .product-tech-cta {
    width: 100%;
  }

  .applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .application-card,
  .application-card-inner {
    min-height: 340px;
  }

  .waitlist-section {
    padding: 0;
  }

  .waitlist-wave {
    width: 100%;
    min-height: clamp(760px, 86vw, 980px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .waitlist-wave-shape {
    display: block;
  }

  .waitlist-content {
    width: min(100% - 84px, 980px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: clamp(28px, 4vw, 48px);
    padding: 70px 0;
  }

  .waitlist-copy {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .waitlist-benefits {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    max-width: none;
  }

  .waitlist-badge {
    position: absolute;
    top: clamp(18px, 3.2vw, 42px);
    right: clamp(18px, 3.6vw, 48px);
    grid-column: auto;
    grid-row: auto;
    width: 128px;
    height: 128px;
    justify-self: auto;
    z-index: 4;
  }

  .waitlist-badge::before {
    inset: 12px;
  }

  .waitlist-discount {
    margin-bottom: 8px;
    font-size: 40px;
  }

  .waitlist-badge-text {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .waitlist-badge-text::after {
    width: 34px;
    margin-top: 10px;
  }

  .waitlist-form-card {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
    padding: 36px 32px;
  }

  .waitlist-title {
    max-width: 480px;
    font-size: clamp(56px, 6.2vw, 70px);
  }

  .waitlist-text {
    font-size: 18px;
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .site-header {
    width: min(1180px, calc(100% - 44px));
    gap: 16px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 168px;
  }

  .nav {
    gap: clamp(32px, 3.8vw, 54px);
    font-size: 13px;
  }

  .waitlist-small {
    padding: 10px 14px;
    font-size: 11px;
  }

  .footer-main {
    width: 100%;
    grid-template-columns: minmax(240px, 0.75fr) minmax(420px, 1fr);
    gap: clamp(44px, 5vw, 64px);
  }

  .footer-logo {
    width: clamp(260px, 25vw, 320px);
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(36px, 4.5vw, 52px);
  }
}

@media (max-width: 1040px) and (min-width: 921px) {
  .site-header {
    gap: 12px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 158px;
  }

  .nav {
    gap: 30px;
    font-size: 12px;
  }

  .waitlist-small {
    padding: 9px 12px;
  }
}

@media (max-width: 920px) {
  .hero-inner {
    width: min(1380px, calc(100% - 40px));
  }

  .site-header {
    align-items: center;
    width: min(1380px, calc(100% - 40px));
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    max-height: 0;
    padding: 0 12px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 24px;
    background: #fffdfa;
    box-shadow: 0 24px 62px rgba(12, 34, 29, 0.13);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 260ms ease, padding 220ms ease, opacity 180ms ease, transform 220ms ease,
      border-color 220ms ease;
  }

  .site-header.is-menu-open .nav {
    max-height: min(78vh, 620px);
    padding: 14px;
    border-color: rgba(24, 60, 52, 0.08);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    color: rgba(24, 60, 52, 0.92);
    font-weight: 600;
  }

  .nav a:hover {
    background: rgba(24, 60, 52, 0.06);
  }

  .nav .waitlist-small {
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
    color: var(--cloud);
  }

  .site-header.is-menu-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  h1 {
    font-size: 72px;
  }

  .subline {
    font-size: 19px;
  }

  .actions {
    gap: 18px;
  }

  .button {
    min-height: 52px;
    gap: 18px;
    padding: 0 24px;
    font-size: 14px;
  }

  .button-primary {
    min-width: 168px;
  }

  .button-secondary {
    min-width: 192px;
  }

  .arrow {
    width: 17px;
    height: 17px;
  }

  .why-steps-inner {
    width: min(100% - 40px, 980px);
  }

  .why-steps-list {
    flex-wrap: wrap;
  }

  .why-inner {
    width: min(100% - 40px, 980px);
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .why-copy {
    max-width: none;
  }

  .why-title {
    max-width: 700px;
    font-size: 58px;
  }

  .why-text {
    max-width: 620px;
  }

  .product-stage {
    margin-left: 0;
    display: flex;
    justify-content: center;
  }

  .product-stage-image {
    width: min(690px, 100%);
  }

  .benefits {
    padding-top: 0;
  }

  .benefits-waitlist-cta {
    padding-left: 76px;
  }

  .product-stage {
    margin-left: -42px;
  }

  .product-stage-image {
    width: min(680px, calc(100% + 56px));
  }

  .technology-inner {
    width: min(100% - 40px, 980px);
  }

  .water-test-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .technology-title {
    font-size: 64px;
  }

  .technology-subline {
    font-size: 19px;
  }

  .water-test-copy,
  .water-test-panel {
    max-width: 760px;
    margin: 0 auto;
  }

  .product-section {
    --product-showcase-pad: 42px;
    padding: calc(var(--section-space-tablet) - var(--product-showcase-pad)) 0 var(--section-space-tablet);
  }

  .product-showcase {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 34px 0;
  }

  .product-copy {
    max-width: 100%;
  }

  .product-frequency-card[open] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .product-title {
    font-size: clamp(48px, 7vw, 66px);
  }

  .product-subline {
    font-size: 18px;
  }

  .product-visual {
    position: relative;
    top: auto;
    min-height: 520px;
    margin: 0 -34px;
  }

  .product-device-frame {
    width: min(500px, 68vw);
    height: min(625px, 85vw);
    transform: translateX(14%);
  }

  .product-gallery {
    --gallery-gap: 16px;
  }

  .product-tech-surface {
    background:
      radial-gradient(circle at 84% 6%, rgba(244, 215, 139, 0.12), transparent 28%),
      linear-gradient(145deg, #21483d 0%, #183a30 58%, #102c25 100%);
    margin-top: 0;
    padding: var(--section-space-tablet) 0;
  }

  .product-tech-wave-shape {
    display: none !important;
    visibility: hidden;
    height: 0 !important;
    opacity: 0;
  }

  .product-tech-inner {
    width: min(100% - 48px, 1040px);
  }

  .product-tech-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-tech-device {
    width: min(480px, 72vw);
    margin: -12px auto 0;
  }

  .product-tech-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .product-tech-feature:nth-child(odd) {
    border-left: 0;
  }

  .product-tech-pill {
    max-width: 640px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .applications-inner {
    width: min(100% - 40px, 980px);
  }

  .applications-title {
    font-size: 60px;
  }

  .applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .application-card,
  .application-card-inner {
    min-height: 330px;
  }

  .application-card-inner {
    padding: 44px 34px 34px;
  }

  .application-card-title {
    min-height: 88px;
    font-size: 29px;
  }

  .waitlist-section {
    padding: 0;
  }

  .waitlist-wave {
    width: 100%;
    min-height: 920px;
  }

  .waitlist-content {
    width: min(100% - 64px, 920px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
    gap: 34px;
    padding: 74px 0 68px;
  }

  .waitlist-copy {
    grid-column: 1 / 2;
  }

  .waitlist-title {
    font-size: 60px;
  }

  .waitlist-text {
    font-size: 18px;
  }

  .waitlist-benefits {
    max-width: none;
  }

  .waitlist-badge {
    width: 118px;
    height: 118px;
  }

  .waitlist-discount {
    font-size: 36px;
  }

  .waitlist-badge-text {
    font-size: 9px;
  }

  .waitlist-form-card {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    padding: 36px 32px;
  }

  .footer-inner {
    width: min(100% - 40px, 920px);
    padding-top: 64px;
  }

  .footer-main {
    width: 100%;
    grid-template-columns: minmax(240px, 0.85fr) minmax(420px, 1.15fr);
    gap: 48px;
  }

  .footer-logo {
    width: clamp(250px, 25vw, 320px);
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .footer-lower {
    gap: 20px;
  }

}

@media (max-width: 760px) {
  .site-footer {
    padding: 50px 0 34px;
  }

  .footer-inner {
    width: min(100% - 36px, 900px);
    padding-top: 42px;
  }

  .footer-main {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    justify-items: center;
    min-height: auto;
  }

  .footer-logo-link {
    justify-content: center;
    margin-bottom: 0;
  }

  .footer-logo {
    width: min(270px, 78vw);
  }

  .footer-nav {
    width: min(100%, 520px);
    justify-self: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    text-align: left;
    padding-top: 0;
  }

  .footer-list {
    gap: 12px;
  }

  .footer-list a {
    font-size: 19px;
    line-height: 1.35;
  }

  .footer-divider {
    margin: 34px 0 28px;
  }

  .footer-lower {
    gap: 22px;
    justify-items: center;
  }

  .footer-claim {
    max-width: 100%;
    font-size: clamp(19px, 5.8vw, 25px);
    line-height: 1.18;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-copyright {
    width: min(100%, 320px);
    display: block;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
  }

  .footer-copyright::before,
  .footer-copyright::after {
    display: none;
  }

  .footer-socials {
    gap: 16px;
    margin: 2px 0 12px;
  }

  .footer-social {
    width: 42px;
    height: 42px;
  }

  .footer-social svg {
    width: 20px;
    height: 20px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .cookie-banner-inner {
    padding: 16px;
    border-radius: 16px;
  }

  .cookie-copy h2 {
    font-size: 28px;
  }

  .cookie-options {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .cookie-option {
    min-height: 56px;
    padding: 10px 12px;
  }

  .cookie-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  .cookie-privacy-link {
    width: 100%;
  }

  .cookie-button {
    flex: 1 1 150px;
    padding: 0 12px;
  }

  .cookie-button-ghost {
    margin-left: 0;
  }

  .waitlist-section {
    overflow: hidden;
    margin-bottom: 0;
    padding: 0;
  }

  .applications-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .application-card,
  .application-card-inner {
    min-height: 300px;
  }

  .waitlist-wave {
    width: 100%;
    min-height: 0;
    display: block;
    overflow: hidden;
    padding: 176px 0 var(--section-space-tablet);
    background:
      radial-gradient(circle at 84% 6%, rgba(244, 215, 139, 0.12), transparent 28%),
      linear-gradient(145deg, #21483d 0%, #183a30 58%, #102c25 100%);
  }

  .waitlist-wave-shape {
    display: none;
  }

  .waitlist-content {
    position: static;
    width: min(100% - 56px, 680px);
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }

  .waitlist-badge,
  .waitlist-form-card,
  .waitlist-copy,
  .waitlist-benefits {
    grid-column: auto;
    grid-row: auto;
  }

  .waitlist-copy {
    order: 1;
  }

  .waitlist-badge {
    position: absolute;
    top: 34px;
    right: 28px;
    width: 144px;
    height: 144px;
    justify-self: auto;
    order: 2;
  }

  .waitlist-benefits {
    order: 3;
  }

  .waitlist-form-card {
    order: 4;
    padding: 32px 26px 28px;
  }

  .waitlist-title {
    font-size: clamp(48px, 10vw, 58px);
    text-shadow: 0 3px 28px rgba(7, 24, 20, 0.72), 0 1px 3px rgba(7, 24, 20, 0.48);
  }

  .product-copy {
    display: contents;
  }

  .product-kicker {
    order: 1;
  }

  .product-title {
    order: 2;
  }

  .product-subline {
    order: 3;
  }

  .product-visual {
    order: 4;
  }

  .product-info-stack {
    order: 5;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-items: stretch;
    gap: 12px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .product-info-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border-radius: 22px;
    overflow: visible;
    background: rgba(239, 240, 238, 0.72);
    box-shadow: none;
  }

  .product-info-card summary,
  .product-info-card[open] summary {
    box-shadow: none;
  }

  .product-info-card summary,
  .product-info-card[open] summary {
    min-height: 56px;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 16px;
  }

  .product-info-card[open] summary {
    min-height: 82px;
    align-items: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 22px;
  }

  .product-info-card[open] {
    border-radius: 22px;
  }

  .product-color-card[open] {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .product-info-card[open] summary .product-info-title::after {
    content: none;
  }

  .product-frequency-card[open] .product-info-inline-copy {
    display: none;
  }

  .product-info-content p {
    max-width: 260px;
    padding: 0 18px 16px;
    font-size: 14px;
    line-height: 1.35;
  }

  .product-frequency-list {
    grid-template-columns: 1fr;
    max-width: none;
    padding: 0 18px 18px;
  }

  .product-frequency-card[open] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .product-frequency-list li {
    grid-template-columns: 18px minmax(0, 1fr);
    min-height: 0;
    padding: 10px 0;
    font-size: 13px;
  }

  .product-frequency-list li,
  .product-frequency-list li:not(:nth-child(3n)) {
    border-right: 0;
  }

  .product-frequency-list li:nth-child(n + 2) {
    border-top: 1px solid rgba(31, 49, 45, 0.1);
  }

  .product-frequency-list li::before,
  .product-frequency-list li:nth-child(n + 4)::before {
    content: none;
  }

  .product-frequency-list strong {
    font-size: 15px;
  }

  .product-info-title {
    white-space: nowrap;
  }

  .product-info-color-dot {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .product-info-plus {
    width: 26px;
    height: 26px;
  }

  .product-colors {
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 18px 16px;
  }

  .product-color-swatch {
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 1px rgba(31, 49, 45, 0.1), 0 4px 10px rgba(29, 42, 36, 0.05);
  }

  .product-color-swatch::after {
    inset: 2px;
  }

  .product-color-option.is-active .product-color-swatch {
    box-shadow: 0 0 0 2px #f8f5ef, 0 0 0 3px rgba(47, 111, 93, 0.76), 0 4px 10px rgba(29, 42, 36, 0.06);
  }
}

@media (max-width: 650px) {
  .waitlist-wave {
    padding: 178px 0 var(--section-space-mobile);
  }

  .waitlist-content {
    width: min(100% - 44px, 620px);
  }

  .waitlist-badge {
    top: 32px;
    right: 24px;
    width: 136px;
    height: 136px;
  }

  .waitlist-badge::before {
    inset: 12px;
  }

  .waitlist-discount {
    margin-bottom: 8px;
    font-size: 36px;
  }

  .waitlist-badge-text {
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .waitlist-badge-text::after {
    width: 32px;
    margin-top: 9px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
    background-position: center;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 14px;
    width: min(100% - 28px, 1180px);
    padding: 10px 12px;
    color: var(--white);
  }

  .brand {
    color: var(--white);
  }

  .brand-mark {
    width: 132px;
  }

  .nav {
    left: -1px;
    right: -1px;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 120px 0 48px;
    max-width: 100%;
  }

  h1 {
    font-size: 56px;
    line-height: 1;
  }

  .subline {
    margin-top: 20px;
    font-size: 16px;
  }

  .actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 34px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .button-secondary {
    width: 100%;
    min-height: 54px;
  }

  .why-section {
    padding: var(--section-space-mobile) 0 24px;
  }

  .why-steps-section {
    padding: 30px 0;
  }

  .why-steps-inner {
    width: min(100% - 28px, 900px);
  }

  .why-steps-list {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }

  .why-step {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .why-step-chevron {
    display: none;
  }

  .why-inner {
    width: min(100% - 28px, 900px);
    gap: 44px;
  }

  .why-title {
    font-size: 42px;
    line-height: 1.08;
  }

  .why-text {
    font-size: 16px;
  }

  .product-stage {
    margin-top: 28px;
    margin-left: 0;
  }

  .product-stage-image {
    width: 100%;
  }

  .benefit {
    grid-template-columns: 86px 1fr;
    gap: 20px;
    padding-bottom: 32px;
  }

  .benefit+.benefit {
    padding-top: 32px;
  }

  .benefit-icon {
    width: 86px;
    height: 86px;
  }

  .benefit-title {
    font-size: 34px;
  }

  .benefit-text {
    margin-top: 10px;
    font-size: 16px;
  }

  .benefits-waitlist-cta {
    padding: 18px 0 0;
  }

  .benefits-waitlist-button {
    width: min(100%, 320px);
  }

  .technology-section {
    padding: var(--section-space-mobile) 0;
  }

  .technology-inner {
    width: min(100% - 28px, 900px);
  }

  .water-test-inner {
    gap: 36px;
  }

  .technology-kicker {
    gap: 14px;
    margin-bottom: 24px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .water-test-kicker-icon {
    width: 38px;
    height: 38px;
  }

  .technology-title {
    font-size: clamp(30px, 8.3vw, 42px);
    line-height: 1.08;
  }

  .water-test-rule {
    margin: 22px 0;
  }

  .technology-subline {
    font-size: 17px;
    line-height: 1.55;
  }

  .water-test-discount-button {
    width: min(100%, 320px);
    min-height: 54px;
    margin-top: 26px;
    padding: 0 76px 0 24px;
    font-size: 17px;
  }

  .water-test-discount-badge {
    right: 20px;
    width: 50px;
    height: 54px;
    font-size: 16px;
  }

  .water-test-proofs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 30px;
    max-width: 100%;
  }

  .water-test-proof {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    gap: 8px;
    padding: 0 8px;
    text-align: center;
  }

  .water-test-proof+.water-test-proof {
    border-left: 1px solid rgba(201, 163, 95, 0.24);
  }

  .water-test-proof-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .water-test-proof p {
    font-size: 11px;
    line-height: 1.2;
  }

  .product-section {
    --product-showcase-pad: 32px;
    padding: calc(var(--section-space-mobile) - var(--product-showcase-pad)) 0 26px;
  }

  .product-inner {
    width: min(100% - 28px, 900px);
  }

  .product-showcase {
    border-radius: 26px;
    overflow: visible;
    padding: 32px 22px 0;
  }

  .product-kicker,
  .product-tech-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .product-title {
    margin-top: 24px;
    font-size: 44px;
    line-height: 1.08;
  }

  .product-subline {
    margin-top: 18px;
    font-size: 16px;
  }

  .product-visual {
    position: relative;
    top: auto;
    min-height: 420px;
    margin: 0 -22px;
  }

  .product-frequency {
    width: 150vw;
  }

  .product-device-frame {
    width: min(380px, 86vw);
    height: min(476px, 107vw);
    transform: translateX(8%);
  }

  .product-colors {
    margin-top: 0;
  }

  .product-gallery {
    --gallery-visible: 1;
    margin-top: 42px;
    padding-bottom: 24px;
  }

  .product-gallery-card {
    aspect-ratio: 1.28;
  }

  .product-gallery-arrow {
    width: 46px;
    height: 46px;
  }

  .product-gallery-arrow-left {
    left: 10px;
  }

  .product-gallery-arrow-right {
    right: 10px;
  }

  .product-tech-section {
    padding-top: 0;
  }

  .product-tech-wave-shape {
    display: none !important;
    visibility: hidden;
    height: 0 !important;
    opacity: 0;
  }

  .product-tech-surface {
    background:
      radial-gradient(circle at 84% 6%, rgba(244, 215, 139, 0.12), transparent 28%),
      linear-gradient(145deg, #21483d 0%, #183a30 58%, #102c25 100%);
    padding: var(--section-space-mobile) 0;
  }

  .product-tech-inner {
    width: min(100% - 28px, 900px);
  }

  .product-tech-copy h2 {
    font-size: 44px;
    line-height: 1.06;
  }

  .product-tech-copy p {
    font-size: 16px;
  }

  .product-tech-device {
    width: min(420px, 88vw);
  }

  .product-tech-feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-tech-feature,
  .product-tech-feature+.product-tech-feature,
  .product-tech-feature:nth-child(odd) {
    border-left: 0;
    padding: 0;
  }

  .product-tech-feature {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 13px;
    text-align: left;
    align-items: center;
  }

  .product-tech-feature img {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .product-tech-feature h3,
  .product-tech-feature p {
    grid-column: 2;
  }

  .product-tech-pill {
    display: grid;
    justify-items: center;
    gap: 8px;
    font-size: 14px;
    border-radius: 24px;
    text-align: center;
  }

  .product-tech-pill span+span::before {
    content: none;
  }

  .product-tech-steps {
    padding: 20px;
  }

  .product-tech-step {
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .applications-section {
    padding: var(--section-space-mobile) 0;
  }

  .applications-inner {
    width: min(100% - 28px, 900px);
  }

  .applications-kicker {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .applications-title {
    font-size: 44px;
    line-height: 1.05;
  }

  .applications-subline {
    margin-top: 22px;
    font-size: 18px;
  }

  .applications-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .application-card {
    border-radius: 18px;
  }

  .application-card,
  .application-card-inner {
    min-height: 300px;
  }

  .application-card-inner {
    padding: 34px 32px 30px;
  }

  .application-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

  .application-card-title {
    min-height: 0;
    font-size: 28px;
  }

  .application-card-text {
    margin-top: 16px;
    font-size: 18px;
  }

  .application-card-link {
    padding-top: 24px;
  }

  .applications-arrow {
    width: 22px;
    height: 22px;
  }

  .applications-cta {
    width: min(100%, 300px);
    min-width: 0;
    min-height: 58px;
    margin-top: 34px;
    font-size: 19px;
  }

  .waitlist-section {
    padding: 0;
    overflow: hidden;
    margin-bottom: 0;
  }

  .waitlist-wave {
    width: 100%;
    min-height: 0;
    padding: 178px 0 var(--section-space-mobile);
    overflow: hidden;
  }

  .waitlist-wave-shape {
    display: none;
  }

  .waitlist-content {
    position: static;
    width: min(100% - 28px, 520px);
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }

  .waitlist-kicker {
    margin-bottom: 24px;
    font-size: 13px;
    letter-spacing: 0.28em;
  }

  .waitlist-title {
    font-size: 47px;
    line-height: 1;
    text-shadow: 0 3px 28px rgba(7, 24, 20, 0.72), 0 1px 3px rgba(7, 24, 20, 0.48);
  }

  .waitlist-text {
    margin-top: 22px;
    font-size: 17px;
  }

  .waitlist-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .waitlist-benefit {
    grid-template-columns: 54px 1fr;
    justify-items: start;
    align-items: center;
    min-height: 0;
    padding: 0;
    text-align: left;
  }

  .waitlist-benefit+.waitlist-benefit {
    border-left: 0;
    border-top: 1px solid rgba(244, 215, 139, 0.34);
    padding-top: 18px;
  }

  .waitlist-badge,
  .waitlist-form-card,
  .waitlist-copy,
  .waitlist-benefits {
    grid-column: auto;
    grid-row: auto;
  }

  .waitlist-badge {
    position: absolute;
    top: 34px;
    right: 18px;
    width: 124px;
    height: 124px;
    justify-self: auto;
    order: 2;
  }

  .waitlist-copy {
    order: 1;
  }

  .waitlist-form-card {
    order: 4;
    padding: 30px 22px 24px;
    border-radius: 17px;
  }

  .waitlist-benefits {
    order: 3;
  }

  .waitlist-discount {
    margin-bottom: 7px;
    font-size: 32px;
  }

  .waitlist-badge-text {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .waitlist-input {
    min-height: 54px;
  }

  .waitlist-submit {
    min-height: 58px;
    font-size: 18px;
  }

  .calendly-float {
    right: 14px;
    bottom: 16px;
    min-height: 52px;
    padding: 8px 14px 8px 9px;
  }

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

  .calendly-float-icon {
    width: 34px;
    height: 34px;
  }

  .calendly-float-icon svg {
    width: 19px;
    height: 19px;
  }

  .calendly-float-copy strong {
    font-size: 13px;
  }

  .calendly-float-copy small {
    font-size: 10px;
  }

  .site-footer {
    padding: 50px 0 34px;
  }

  .footer-inner {
    width: min(100% - 36px, 900px);
    padding-top: 42px;
  }

  .footer-main {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    justify-items: center;
    min-height: auto;
  }

  .footer-logo-link {
    justify-content: center;
    margin-bottom: 0;
  }

  .footer-logo {
    width: min(270px, 78vw);
  }

  .footer-nav {
    width: min(100%, 520px);
    justify-self: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    text-align: left;
    padding-top: 0;
  }

  .footer-list {
    gap: 12px;
  }

  .footer-list a {
    font-size: 18px;
    line-height: 1.35;
  }

  .footer-divider {
    margin: 34px 0 28px;
  }

  .footer-lower {
    gap: 22px;
    justify-items: center;
  }

  .footer-claim {
    max-width: 100%;
    font-size: clamp(19px, 5.8vw, 25px);
    line-height: 1.18;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-copyright {
    width: min(100%, 320px);
    display: block;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
  }

  .footer-copyright::before,
  .footer-copyright::after {
    display: none;
  }

  .footer-socials {
    gap: 16px;
    margin: 2px 0 12px;
  }

  .footer-social {
    width: 42px;
    height: 42px;
  }

  .footer-social svg {
    width: 20px;
    height: 20px;
  }
}
