:root {
  --bg: #071817;
  --bg-soft: #0d2422;
  --surface: #f6fbfa;
  --surface-muted: #e7efed;
  --card: rgba(255, 255, 255, 0.92);
  --ink: #091412;
  --ink-muted: #667673;
  --white: #fbfffe;
  --accent: #00a3aa;
  --accent-dark: #047b82;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(8, 20, 18, 0.12);
  --yellow: #e9dc00;
  --shadow: 0 28px 80px -40px rgba(5, 25, 24, 0.45);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html.is-jumping-home {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 50;
  transform: translateY(-140%);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--bg);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 44px -28px rgba(0, 0, 0, 0.55);
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 163, 170, 0.55);
  outline-offset: 4px;
}

#main-content:focus {
  outline: none;
}

.ai-readable-content {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 15;
  width: min(1220px, calc(100% - 28px));
  min-height: 68px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 24, 23, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 50px -32px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 154px;
  height: auto;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  transition: color 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: var(--accent);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

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

.header-cta,
.owners-link,
.mobile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-cta:hover,
.owners-link:hover,
.mobile-download:hover {
  background: #09b2ba;
}

.header-cta:active,
.owners-link:active,
.mobile-download:active,
.icon-button:active,
.route-link:active {
  transform: translateY(1px) scale(0.98);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle i {
  font-size: 24px;
}

.mobile-menu {
  position: fixed;
  top: 96px;
  left: 14px;
  right: 14px;
  z-index: 14;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(7, 24, 23, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(0.16, 1, 0.3, 1), transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 14px 12px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-sequence {
  position: relative;
  min-height: calc(100dvh + min(200dvh, 2200px));
  background: #0a1716;
}

.hero-sticky {
  position: sticky;
  top: 0;
  overflow: hidden;
  min-height: 100dvh;
  isolation: isolate;
  background: #0a1716 url("assets/frames/frame_000.webp") center / cover no-repeat;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 50%, rgba(0, 163, 170, 0.18), transparent 34rem),
    linear-gradient(90deg, rgba(5, 17, 16, 0.93) 0%, rgba(5, 17, 16, 0.62) 44%, rgba(5, 17, 16, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 24, 23, 0.62), transparent 42%);
}

.hero-watermark {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  z-index: -1;
  color: rgba(255, 255, 255, 0.055);
  font-size: 18rem;
  font-weight: 900;
  line-height: 1;
}

.hero-copy {
  width: var(--container);
  min-height: 100dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-brand {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.hero-brand span {
  color: var(--accent);
}

.hero-copy h1 {
  width: min(690px, 100%);
  margin: 0;
  color: #06aab1;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.06;
  text-wrap: balance;
}

.hero-text {
  width: min(610px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 24px;
  line-height: 1.4;
}

.motion-ready .sequence-item {
  opacity: 0;
  transform: translateY(34px);
  will-change: transform, opacity;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.store-link {
  display: inline-flex;
  width: 202px;
  min-height: 60px;
  border: 1px solid rgba(190, 204, 200, 0.58);
  border-radius: 13px;
  background: #050706;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-link:hover {
  border-color: rgba(225, 235, 232, 0.78);
}

.store-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 24, 23, 0.62);
  box-shadow: 0 18px 44px -28px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scroll-hint span {
  position: relative;
  width: 18px;
  height: 42px;
  border-radius: 99px;
  border: 2px solid rgba(255, 255, 255, 0.56);
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 5px;
  height: 12px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0, 163, 170, 0.75);
  transform: translateX(-50%);
  animation: wheel 1.35s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes wheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  32% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 12px);
    opacity: 0;
  }
}

.section {
  position: relative;
  scroll-margin-top: 118px;
  padding: 120px 0;
  background: var(--surface);
  color: var(--ink);
}

.section-grid,
.section-row,
.footer-grid,
.owners-card,
.download-band,
.section-title,
.faq-list {
  width: var(--container);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 72px;
}

.section-grid > *,
.how-layout > *,
.download-band > *,
.owners-card > *,
.footer-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.04;
  text-wrap: balance;
}

.about-copy h2 {
  font-size: 40px;
  line-height: 1.08;
}

.about .section-grid {
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1.44fr);
  align-items: stretch;
  gap: 64px;
}

h3,
p {
  margin-top: 0;
}

.about-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 21px;
  line-height: 1.52;
}

.drop-logo {
  width: 132px;
  margin-bottom: 34px;
  filter: drop-shadow(0 26px 20px rgba(0, 163, 170, 0.16));
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.about-metrics div {
  min-height: 112px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.about-metrics strong {
  display: block;
  color: var(--accent-dark);
  font-size: 28px;
  line-height: 1;
}

.about-metrics strong .metric-prefix {
  display: block;
  min-height: 0;
  margin: 0 0 2px;
  color: inherit;
  font-size: 0.5em;
  line-height: 0.9;
}

.about-metrics span {
  display: block;
  min-height: 36px;
  margin-top: 14px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.25;
}

.video-card {
  justify-self: end;
  width: 100%;
}

.about .video-card {
  align-self: end;
  display: flex;
  height: calc(100% - 134px);
  min-height: 460px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 32px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.video-frame img,
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.about .video-card .video-frame {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.how {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 163, 170, 0.12), transparent 23rem),
    var(--surface);
}

.how-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(600px, 1.4fr) minmax(420px, 0.85fr);
  gap: 36px;
  align-items: stretch;
}

.how-video {
  display: flex;
}

.how-video .video-frame {
  width: 100%;
  height: 100%;
  min-height: 368px;
  aspect-ratio: auto;
  border-radius: 30px;
  box-shadow: 0 28px 74px -46px rgba(7, 24, 23, 0.7);
}

.section-title {
  margin-bottom: 54px;
}

.section-title h2 {
  max-width: 760px;
}

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

.step-card {
  grid-column: auto;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(8, 20, 18, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 62px -48px rgba(7, 24, 23, 0.5);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 78px -48px rgba(7, 24, 23, 0.7);
}

.step-card.wide {
  grid-column: auto;
}

.step-card.tall {
  grid-row: auto;
}

.step-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.step-card p {
  width: min(250px, 100%);
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.25;
}

.step-card span {
  margin-top: 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.nearby {
  overflow: hidden;
  padding-bottom: 72px;
  background: #ffffff;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-row h2 {
  max-width: 720px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.icon-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.24s cubic-bezier(0.16, 1, 0.3, 1), color 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-button:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.wash-filter-layout {
  width: var(--container);
  margin: -12px auto 30px;
  display: grid;
  gap: 18px;
}

.wash-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.wash-carousel-controls {
  justify-self: end;
  justify-content: flex-end;
}

.wash-filter-bar[hidden] {
  display: none;
}

.city-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(8, 20, 18, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.24s cubic-bezier(0.16, 1, 0.3, 1), background 0.24s cubic-bezier(0.16, 1, 0.3, 1), color 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.city-filter:hover {
  border-color: var(--accent);
}

.city-filter:active {
  transform: translateY(1px) scale(0.98);
}

.city-filter[aria-pressed="true"] {
  border-color: var(--bg);
  background: var(--bg);
  color: var(--white);
}

.city-filter strong {
  min-width: 24px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(0, 163, 170, 0.12);
  color: var(--accent-dark);
  font-size: 12px;
  line-height: 1;
}

.city-filter[aria-pressed="true"] strong {
  background: var(--accent);
  color: var(--white);
}

.wash-carousel,
.discount-track,
.review-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
}

.wash-carousel,
.review-track {
  width: var(--container);
  margin: 0 auto;
}

.discount-track {
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
}

.wash-carousel::-webkit-scrollbar,
.discount-track::-webkit-scrollbar,
.review-track::-webkit-scrollbar {
  display: none;
}

.drag-scroll {
  cursor: grab;
}

.drag-scroll.is-loading {
  cursor: progress;
}

.drag-scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.drag-scroll.is-wheel-scrolling {
  scroll-snap-type: none;
}

.drag-scroll.is-auto-scrolling {
  scroll-snap-type: none;
}

.wash-card {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 0;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(8, 20, 18, 0.12);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 26px 70px -54px rgba(7, 24, 23, 0.62);
}

.wash-card img {
  width: 100%;
  height: 154px;
  object-fit: cover;
}

.wash-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  flex: 1;
  min-height: 218px;
  padding: 22px;
}

.wash-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wash-title h3 {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wash-title span,
.discount-card span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.wash-body p {
  min-height: 57px;
  margin: 12px 0 26px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wash-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  align-self: end;
  margin-top: 0;
  color: #8b9694;
  font-size: 14px;
}

.wash-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  margin-top: 14px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(8, 20, 18, 0.36);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  white-space: normal;
  transition: border-color 0.24s cubic-bezier(0.16, 1, 0.3, 1), background 0.24s cubic-bezier(0.16, 1, 0.3, 1), color 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-link:hover {
  border-color: var(--accent);
  background: rgba(0, 163, 170, 0.08);
}

.discounts {
  padding-top: 84px;
  background:
    linear-gradient(180deg, #ffffff, var(--surface)),
    var(--surface);
}

.discounts .section-title {
  text-align: left;
}

.discount-track {
  padding-bottom: 16px;
}

.discount-card {
  position: relative;
  flex: 0 0 280px;
  min-height: 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 26px;
  border: 1px solid rgba(8, 20, 18, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: 0 28px 70px -54px rgba(7, 24, 23, 0.45);
}

.discount-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.discount-card span {
  position: absolute;
  top: 38px;
  right: 42px;
}

.discount-card h3 {
  margin: 28px 0 10px;
  font-size: 25px;
  line-height: 1.18;
}

.discount-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(0, 163, 170, 0.18), transparent 36%),
    var(--bg-soft);
  box-shadow: var(--shadow);
}

.download-band h2 {
  max-width: 820px;
  color: var(--white);
  font-size: 38px;
  line-height: 1.08;
}

.download-band .eyebrow {
  color: #9be8e7;
}

.download-band .store-row {
  justify-content: flex-end;
  margin: 0;
}

.reviews {
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(0, 163, 170, 0.1), transparent 20rem),
    var(--surface);
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.rating-pill span {
  color: var(--ink);
  font-size: 18px;
}

.rating-pill strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  border: 1px solid #1aa04c;
  border-radius: 999px;
  color: #159947;
  font-size: 22px;
  font-weight: 500;
}

.review-track {
  align-items: center;
  min-height: 278px;
  padding-bottom: 18px;
}

.review-card {
  flex: 0 0 286px;
  min-height: 224px;
  scroll-snap-align: start;
  padding: 30px;
  border: 1px solid rgba(8, 20, 18, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
}

.review-card.compact {
  flex-basis: 288px;
  min-height: 184px;
}

.review-card.wide {
  flex-basis: 374px;
  min-height: 254px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
}

.review-user img {
  width: 34px;
  height: 34px;
}

.review-user h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1;
}

.review-card p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.28;
}

.review-card span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  color: #8b9694;
  font-size: 14px;
}

.owners {
  scroll-margin-top: 118px;
  padding: 76px 0;
  background: #ffffff;
  color: var(--ink);
}

.owners-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 44px 74px;
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 28px 90px -58px rgba(7, 24, 23, 0.5);
}

.owners-card h2 {
  max-width: 600px;
  font-size: 36px;
  text-transform: uppercase;
}

.owners-card p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 21px;
}

.owners-card strong span {
  color: var(--accent-dark);
}

.faq-section {
  background: var(--surface);
}

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

details {
  border: 1px solid rgba(8, 20, 18, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 0 24px;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary i {
  flex: 0 0 auto;
  color: var(--accent-dark);
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

details[open] summary i {
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.5;
}

.footer {
  padding: 72px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #1c3431;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 52px;
}

.footer-logo {
  width: 192px;
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 24px;
}

.footer a,
.footer p {
  color: #8fdad9;
}

.footer a {
  display: block;
  margin: 0 0 10px;
  transition: color 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.footer p {
  margin: 0 0 28px;
  line-height: 1.35;
}

.socials {
  display: flex;
  gap: 14px;
  margin-bottom: 54px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 22px;
}

.copyright {
  color: rgba(255, 255, 255, 0.7) !important;
}

.site-version {
  margin-top: -16px !important;
  color: rgba(255, 255, 255, 0.34) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .header-cta {
    justify-self: end;
    margin-left: 0;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .section-grid,
  .download-band,
  .owners-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about .section-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    justify-self: stretch;
  }

  .about .video-card {
    height: auto;
    min-height: 0;
  }

  .about .video-card .video-frame {
    aspect-ratio: 16 / 9;
  }

  .how-layout {
    grid-template-columns: 1fr;
  }

  .how-video {
    max-width: 760px;
  }

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

  .step-card,
  .step-card:nth-child(4),
  .step-card.wide,
  .step-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .download-band .store-row {
    justify-content: flex-start;
  }

  .wash-card {
    flex-basis: calc((100% - 44px) / 3);
  }
}

@media (max-width: 860px) {
  .wash-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    min-height: 60px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 10px 10px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 142px;
    max-width: min(142px, calc(100vw - 104px));
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
  }

  .mobile-menu {
    top: 78px;
    left: auto;
    right: 12px;
    width: min(320px, calc(100% - 24px));
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    padding: 12px;
    border-radius: 22px;
    transform: translate3d(12px, -10px, 0) scale(0.98);
    transform-origin: top right;
  }

  .mobile-menu.is-open {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    justify-content: flex-end;
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 17, 16, 0.15), rgba(5, 17, 16, 0.92) 63%, rgba(5, 17, 16, 0.98)),
      radial-gradient(circle at 60% 40%, rgba(0, 163, 170, 0.22), transparent 18rem);
  }

  .hero-brand {
    font-size: 38px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 0.98;
  }

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

  .store-row {
    gap: 12px;
    flex-wrap: wrap;
  }

  .store-link {
    width: min(162px, calc(50vw - 22px));
    min-height: 48px;
  }

  .section {
    padding: 76px 0;
  }

  .nearby {
    padding-bottom: 52px;
  }

  .discounts {
    padding-top: 56px;
  }

  h2 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }

  .about-copy h2 {
    font-size: 30px;
  }

  .nearby .section-row h2 {
    max-width: 100%;
    font-size: 31px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .section-grid {
    gap: 42px;
  }

  .drop-logo {
    width: 104px;
    margin-bottom: 26px;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

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

  .video-frame {
    border-radius: 24px;
  }

  .how-layout {
    gap: 22px;
  }

  .how-video {
    max-width: none;
  }

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

  .step-card {
    min-height: 224px;
    padding: 24px;
  }

  .step-card p {
    font-size: 22px;
  }

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

  .wash-filter-layout {
    gap: 12px;
    margin-bottom: 24px;
  }

  .wash-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .wash-carousel-controls {
    justify-self: end;
  }

  .wash-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .city-filter {
    flex: 0 0 auto;
  }

  .discount-track {
    padding-left: 14px;
    padding-right: 14px;
  }

  .wash-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .download-band {
    width: min(100% - 28px, 1180px);
    padding: 30px;
    gap: 22px;
    border-radius: 28px;
  }

  .download-band h2 {
    font-size: 27px;
    line-height: 1.08;
  }

  .owners-card {
    overflow: hidden;
    padding: 28px 24px;
    gap: 26px;
    border-radius: 28px;
  }

  .owners-card h2 {
    max-width: 100%;
    font-size: clamp(24px, 7vw, 28px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .owners-card p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .owners-link {
    width: 100%;
    min-width: 0;
    padding: 0 16px;
    text-align: center;
    white-space: normal;
  }

  summary {
    min-height: 68px;
    padding: 0 18px;
    font-size: 18px;
  }

  details p {
    padding: 0 18px 20px;
    font-size: 16px;
  }

  .footer {
    padding: 54px 0;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-brand {
    font-size: 34px;
  }

  .store-link {
    width: min(148px, calc(50vw - 22px));
  }

  .wash-card {
    flex-basis: 100%;
  }

  .owners-card {
    padding: 26px 20px;
  }

  .owners-card h2 {
    font-size: clamp(23px, 7.4vw, 26px);
  }

  .review-card,
  .review-card.compact,
  .review-card.wide {
    flex-basis: 282px;
  }
}

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

  .sequence-item,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
