@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../../fonts/poppins-500.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../fonts/poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../fonts/poppins-700.woff2") format("woff2");
}

:root {
  --paper: #f8f0e3;
  --paper-deep: #efe3d1;
  --cream: #fffaf1;
  --peach: #f2d4c6;
  --peach-soft: #f8e6dc;
  --sage: #d9dfd2;
  --sage-deep: #72806b;
  --charcoal: #25231e;
  --ink: #312d27;
  --muted: #746b60;
  --coral: #d75f3f;
  --coral-dark: #a8442d;
  --gold: #cf9e37;
  --line: rgba(49, 45, 39, 0.14);
  --light-line: rgba(255, 250, 241, 0.17);
  --shadow: 0 30px 80px rgba(84, 60, 38, 0.17);
  --shadow-soft: 0 16px 45px rgba(84, 60, 38, 0.1);
  --display: "Poppins", "SF Pro Rounded", ui-rounded, system-ui, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --shell: 1240px;
  --header: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 1.5rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:has(.lightbox[open]) {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.carousel-viewport:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  color: var(--charcoal);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--coral);
  font-style: normal;
}

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5.5rem, 8vw, 8rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: var(--cream);
  background: var(--charcoal);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.section-heading {
  max-width: 840px;
}

.section-heading h2,
.overview-head h2,
.tour-copy h2,
.pricing-copy h2,
.faq-heading h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.7rem, 5.2vw, 5.5rem);
  font-weight: 600;
  line-height: 0.98;
}

.section-heading > p:last-child,
.overview-head > p:last-child,
.tour-copy > p,
.pricing-copy > p,
.faq-heading > p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header);
  border-bottom: 1px solid rgba(49, 45, 39, 0.09);
  background: rgba(248, 240, 227, 0.88);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 240, 227, 0.96);
  box-shadow: 0 12px 34px rgba(65, 48, 32, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.brand {
  width: 152px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.4rem);
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="location"] {
  color: var(--charcoal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  color: var(--cream);
  background: var(--charcoal);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.16), 0 8px 22px rgba(49, 45, 39, 0.12);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-cta span {
  transition: transform 180ms ease;
}

.header-cta:hover {
  color: var(--cream);
  border-color: var(--coral-dark);
  background: var(--coral-dark);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18), 0 10px 26px rgba(168, 68, 45, 0.2);
  transform: translateY(-1px);
}

.header-cta:hover span {
  transform: translate(2px, -2px);
}

.header-cta:active {
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 4px 12px rgba(49, 45, 39, 0.12);
  transform: translateY(0);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(4.5rem, 8vw, 7.5rem);
  background:
    radial-gradient(circle at 78% 14%, rgba(216, 95, 63, 0.13), transparent 25rem),
    radial-gradient(circle at 7% 80%, rgba(207, 158, 55, 0.1), transparent 27rem),
    var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  min-height: min(760px, calc(100svh - var(--header)));
  gap: clamp(2rem, 5vw, 6rem);
}

.hero-copy {
  padding-bottom: 2.5rem;
  animation: hero-in 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy h1 {
  max-width: 750px;
  margin-bottom: 1.65rem;
  font-size: clamp(3.35rem, 6.5vw, 7.35rem);
  font-weight: 600;
  line-height: 0.91;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 2rem;
  color: #5e554b;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-bottom: 1.1rem;
}

.app-store-link {
  display: inline-flex;
  border-radius: 0.7rem;
  transition: transform 180ms ease, filter 180ms ease;
}

.app-store-link:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.app-store-link img {
  width: 170px;
  height: auto;
}

.outcome-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  color: var(--cream);
  background: var(--charcoal);
  box-shadow: 0 12px 30px rgba(37, 35, 30, 0.14);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.outcome-cta:hover {
  color: var(--charcoal);
  background: var(--cream);
  box-shadow: 0 16px 38px rgba(37, 35, 30, 0.18);
  transform: translateY(-2px);
}

.outcome-cta span {
  color: var(--coral);
}

.text-link {
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 600;
}

.text-link span {
  color: var(--coral);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-note > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77876e;
  box-shadow: 0 0 0 4px rgba(119, 135, 110, 0.14);
}

.hero-art {
  position: relative;
  min-height: 650px;
  animation: hero-in 900ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-art::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -8%;
  bottom: 4%;
  left: 5%;
  border-radius: 52% 48% 42% 58% / 55% 40% 60% 45%;
  content: "";
  background: linear-gradient(145deg, rgba(235, 205, 184, 0.85), rgba(221, 224, 210, 0.8));
  transform: rotate(-4deg);
}

.hero-phone {
  position: absolute;
  z-index: 2;
  top: 9%;
  left: 50%;
  width: min(95%, 650px);
  height: auto;
  filter: drop-shadow(0 38px 42px rgba(53, 42, 31, 0.2));
  transform: translateX(-50%) rotate(2deg);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(49, 45, 39, 0.14);
  border-radius: 50%;
}

.hero-orbit--one {
  top: 4%;
  left: 2%;
  width: 82%;
  aspect-ratio: 1;
}

.hero-orbit--two {
  right: 1%;
  bottom: 2%;
  width: 58%;
  aspect-ratio: 1;
}

.hero-prop {
  position: absolute;
  z-index: 3;
  margin: 0;
}

.hero-prop img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 20px rgba(53, 42, 31, 0.16));
}

.hero-prop figcaption {
  position: absolute;
  min-width: max-content;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(49, 45, 39, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 10px 25px rgba(84, 60, 38, 0.1);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-prop--laundry {
  top: 2%;
  left: -3%;
  width: 26%;
  animation: float-a 6.5s ease-in-out infinite;
}

.hero-prop--laundry figcaption {
  top: 68%;
  left: 52%;
}

.hero-prop--plants {
  right: -5%;
  bottom: 4%;
  width: 24%;
  animation: float-b 7s ease-in-out infinite;
}

.hero-prop--plants figcaption {
  right: 48%;
  bottom: 3%;
}

.hero-prop--trash {
  bottom: 0;
  left: 2%;
  width: 21%;
  animation: float-c 7.8s ease-in-out infinite;
}

.hero-prop--trash figcaption {
  bottom: 5%;
  left: 65%;
}

.trust-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(430px, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  margin-top: 1.5rem;
  padding-block: 1.35rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-rail p,
.trust-rail > span {
  margin: 0;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trust-rail strong {
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  text-align: center;
}

.trust-rail strong span {
  margin-inline: clamp(0.4rem, 1vw, 0.8rem);
  color: var(--coral);
}

.trust-rail > span {
  max-width: 230px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.77rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-align: right;
  text-transform: none;
}

/* Recommender */
.recommender {
  background: var(--sage);
}

.recommender-heading {
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.recommender-heading h2 em {
  color: var(--sage-deep);
}

.recommender-live {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(430px, 1.12fr);
  overflow: hidden;
  padding-top: 3.5rem;
  border-radius: 1.25rem;
  background: rgba(244, 241, 232, 0.88);
  box-shadow: 0 24px 60px rgba(68, 75, 61, 0.13);
}

.live-chrome {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 3.5rem;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.35rem;
  border-bottom: 1px solid rgba(49, 45, 39, 0.1);
  background: rgba(255, 253, 248, 0.72);
}

.live-chrome strong {
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
}

.live-chrome span {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.recommender-controls,
.recommender-result {
  padding: clamp(1.75rem, 4vw, 3.5rem);
}

.recommender-controls {
  margin: 0;
  border-right: 1px solid rgba(49, 45, 39, 0.12);
  background: rgba(255, 253, 248, 0.42);
}

.live-step {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.live-step > span,
.result-heading > div > span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(49, 45, 39, 0.15);
  border-radius: 50%;
  color: var(--coral-dark);
  background: rgba(255, 250, 241, 0.58);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
}

.live-step strong {
  display: block;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 0.92rem;
}

.live-step small {
  display: block;
  margin-top: 0.2rem;
  color: #65705f;
  font-size: 0.75rem;
  line-height: 1.45;
}

.live-step--questions {
  margin-top: 2.25rem;
}

.age-control {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.age-control strong {
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.age-slider {
  width: 100%;
  height: 28px;
  margin: 0;
  accent-color: var(--coral);
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.age-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--coral)) 0 / var(--age-progress, 40%) 100% no-repeat, rgba(49, 45, 39, 0.12);
}

.age-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(49, 45, 39, 0.12);
}

.age-slider::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--coral);
}

.age-slider::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -9px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 4px 14px rgba(84, 60, 38, 0.28);
  -webkit-appearance: none;
  appearance: none;
}

.age-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 4px 14px rgba(84, 60, 38, 0.28);
}

.age-slider:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.age-range-note {
  display: flex;
  justify-content: space-between;
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.67rem;
}

.profile-question {
  min-width: 0;
  margin: 0 0 1.15rem;
  padding: 0;
  border: 0;
}

.profile-question legend {
  margin-bottom: 0.55rem;
  color: var(--charcoal);
  font-size: 0.79rem;
  font-weight: 700;
}

.profile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.profile-chip {
  position: relative;
  cursor: pointer;
}

.profile-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.profile-chip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(49, 45, 39, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 250, 241, 0.54);
  font-size: 0.74rem;
  font-weight: 600;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.profile-chip:hover span {
  border-color: rgba(49, 45, 39, 0.32);
  transform: translateY(-1px);
}

.profile-chip input:checked + span {
  border-color: var(--sage-deep);
  color: #fff;
  background: var(--sage-deep);
  box-shadow: 0 7px 18px rgba(72, 85, 65, 0.18);
}

.profile-chip input:focus-visible + span {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.recommender-result {
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, 0.8);
}

.result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.result-heading > div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.result-heading p {
  margin: 0;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-heading > strong {
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(49, 45, 39, 0.12);
  border-radius: 999px;
  color: var(--charcoal);
  background: rgba(255, 250, 241, 0.68);
  font-family: var(--display);
  font-size: 0.72rem;
}

.recommender-result h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.result-intro {
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.sample-plan {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(49, 45, 39, 0.11);
  list-style: none;
}

.sample-plan li {
  display: grid;
  grid-template-columns: 24px 52px 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 0.2rem;
  border-bottom: 1px solid rgba(49, 45, 39, 0.11);
  background: transparent;
  animation: plan-in 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sample-plan li:nth-child(2) { animation-delay: 45ms; }
.sample-plan li:nth-child(3) { animation-delay: 90ms; }
.sample-plan li:nth-child(4) { animation-delay: 135ms; }

.sample-plan img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.plan-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--sage-deep);
  font-size: 0.7rem;
  font-weight: 800;
}

.sample-plan p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.3;
}

.sample-plan strong {
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.sample-plan small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.result-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.8rem;
  color: #65705f;
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.result-footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--coral);
}

.result-note {
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.recommender-result .outcome-cta {
  align-self: center;
  margin-top: auto;
}

/* Overview */
.overview {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 7vw, 7rem);
  color: #d6cec1;
  background:
    radial-gradient(circle at 50% 40%, rgba(215, 95, 63, 0.16), transparent 34rem),
    #181713;
}

.overview::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 0 48%, rgba(255, 255, 255, 0.025) 48% 49%, transparent 49% 100%);
  background-size: 18px 18px;
}

.overview-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.45fr);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  gap: 2rem;
}

.overview-head h2 {
  margin-bottom: 0;
  color: #fffaf1;
}

.overview-head h2 em {
  color: #efad91;
}

.overview-head > p:last-child {
  margin-bottom: 0.45rem;
  color: #aaa095;
}

.overview-frame {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.overview-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--light-line);
  border-radius: clamp(1rem, 2vw, 1.75rem);
  background: #090907;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
}

.overview-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.35rem;
  color: #8e857b;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overview-caption i {
  width: clamp(1rem, 4vw, 4rem);
  height: 1px;
  background: var(--light-line);
}

.overview-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.overview-flow article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.8rem;
  padding: 1.35rem clamp(0.75rem, 2vw, 1.5rem);
  border-right: 1px solid var(--light-line);
}

.overview-flow article:first-child {
  padding-left: 0;
}

.overview-flow article:last-child {
  padding-right: 0;
  border-right: 0;
}

.overview-flow article > span {
  color: #efad91;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.overview-flow strong {
  display: block;
  color: var(--cream);
  font-family: var(--display);
  font-size: 0.84rem;
}

.overview-flow p {
  margin: 0.25rem 0 0;
  color: #948b80;
  font-size: 0.75rem;
  line-height: 1.45;
}

/* App tour */
.tour {
  overflow: hidden;
  background: var(--peach);
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(470px, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.tour-copy {
  align-self: center;
}

.tour-copy h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
}

.tour-copy h2 em {
  color: var(--coral-dark);
}

.tour-story {
  min-height: 78px;
  margin-top: 1.4rem;
  padding: 1rem 0 1rem 1.1rem;
  border-left: 2px solid var(--coral);
}

.tour-story span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-story strong {
  display: block;
  max-width: 420px;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.35;
}

.tour-controls {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
}

.tour-controls p {
  min-width: 3.4rem;
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
}

.carousel-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(49, 45, 39, 0.3);
  border-radius: 50%;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover:not(:disabled) {
  color: var(--cream);
  background: var(--charcoal);
  transform: translateY(-2px);
}

.carousel-arrow:disabled {
  cursor: default;
  opacity: 0.32;
}

.carousel-dots {
  display: flex;
  justify-content: space-between;
  width: min(100%, 360px);
  gap: 0;
  margin-top: 0.55rem;
}

.carousel-dots button {
  position: relative;
  display: grid;
  width: 36px;
  height: 44px;
  padding: 0;
  border: 0;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: rgba(49, 45, 39, 0.23);
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.carousel-dots button.active::after {
  width: 24px;
  border-radius: 999px;
  background: var(--coral-dark);
}

.carousel-dots button:hover::after {
  background: rgba(49, 45, 39, 0.46);
}

.carousel-dots button.active:hover::after {
  background: var(--coral-dark);
}

.outcome-cta--tour {
  margin-top: 1rem;
}

.carousel-stage {
  position: relative;
}

.carousel-navigation {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-top: 1.15rem;
  flex-direction: column;
}

.carousel-stage::before {
  position: absolute;
  border: 1px solid rgba(49, 45, 39, 0.13);
  border-radius: 50%;
  content: "";
}

.carousel-stage::before {
  top: -8%;
  right: 0;
  width: 70%;
  aspect-ratio: 1;
}

.carousel-viewport {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  margin-inline: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
}

.carousel-slide {
  display: grid;
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  place-items: center;
  padding: 0 0.9rem;
  border: 0;
  background: transparent;
  scroll-snap-align: center;
  cursor: zoom-in;
}

.carousel-slide img {
  width: min(100%, 430px);
  height: auto;
  border-radius: 0.7rem;
  background: white;
  box-shadow: 0 24px 55px rgba(112, 67, 48, 0.18);
}

.swipe-note {
  position: relative;
  z-index: 2;
  margin: 0.45rem 0 0;
  color: #8f685a;
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

/* Whole-home features */
.whole-home {
  background: var(--cream);
}

.whole-home-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.42fr);
  align-items: end;
  max-width: none;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  gap: 2rem;
}

.whole-home-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.whole-home-heading > p:last-child {
  margin-bottom: 0.7rem;
}

.home-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.home-feature {
  margin: 0;
}

.home-feature img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.2rem;
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
}

.home-feature figcaption {
  display: grid;
  margin-top: 1.1rem;
}

.home-feature strong {
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 1rem;
}

.home-feature p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Pricing and privacy */
.pricing {
  background: var(--paper-deep);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.pricing-copy {
  position: sticky;
  top: calc(var(--header) + 3rem);
}

.pricing-copy h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.4rem);
}

.pricing-copy .app-store-link {
  margin-top: 1.3rem;
}

.price-ledger {
  border-top: 1px solid rgba(49, 45, 39, 0.2);
}

.price-ledger article {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.75fr);
  align-items: center;
  gap: 2rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid rgba(49, 45, 39, 0.2);
}

.price-ledger article > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 1rem;
}

.price-ledger article > div > span {
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.8vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.price-ledger h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  letter-spacing: -0.035em;
}

.price-ledger p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-ledger--accent {
  margin-inline: -1.5rem;
  padding-inline: 1.5rem !important;
  border-bottom: 0 !important;
  border-radius: 1.2rem;
  color: #e9e1d6;
  background: var(--charcoal);
}

.price-ledger--accent h3 {
  color: var(--cream);
}

.price-ledger--accent p {
  color: #b7ada1;
}

.price-ledger--accent > div > span {
  color: #efad91;
}

.privacy-band {
  display: grid;
  grid-template-columns: 110px minmax(250px, 0.8fr) 1fr;
  align-items: center;
  margin-top: clamp(5rem, 9vw, 9rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px solid rgba(49, 45, 39, 0.18);
  border-bottom: 1px solid rgba(49, 45, 39, 0.18);
  background: transparent;
}

.privacy-band > img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.privacy-band h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.privacy-band > p {
  margin: 0;
  color: var(--muted);
}

/* FAQ */
.faq {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(500px, 1.35fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header) + 3rem);
}

.faq-heading h2 {
  font-size: clamp(2.7rem, 4vw, 4.2rem);
}

.faq-heading a {
  color: var(--coral-dark);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 1rem;
  padding: 1.45rem 0;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  color: var(--coral-dark);
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 680px;
  margin: -0.25rem 3.5rem 1.5rem 0;
  color: var(--muted);
}

/* Final CTA */
.final-cta {
  padding: 0 1.5rem 1.5rem;
  background: var(--cream);
}

.final-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  border-radius: 1.25rem;
  color: #c6bcb0;
  background:
    radial-gradient(circle at 20% 50%, rgba(215, 95, 63, 0.22), transparent 28rem),
    #1d1b17;
}

.final-card > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.3));
}

.final-card > div {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 5rem);
}

.final-card h2 {
  max-width: 760px;
  margin-bottom: 2rem;
  color: var(--cream);
  font-size: clamp(2.5rem, 4.7vw, 5.1rem);
  line-height: 0.98;
}

/* Footer */
.site-footer {
  padding: 4.5rem 0 2rem;
  color: #aaa095;
  background: #171612;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: start;
  color: var(--cream);
  font-family: var(--display);
  font-weight: 600;
  text-decoration: none;
}

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

.site-footer p {
  margin: 0;
  justify-self: end;
  font-family: var(--display);
  font-size: 0.78rem;
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
}

.site-footer nav a,
.footer-meta a {
  color: inherit;
  font-size: 0.8rem;
}

.footer-meta {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: 0.76rem;
}

/* Fullscreen app-panel viewer */
.lightbox {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--cream);
  background: rgba(19, 17, 14, 0.97);
}

.lightbox::backdrop {
  background: rgba(19, 17, 14, 0.97);
}

.lightbox-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.lightbox-track::-webkit-scrollbar {
  display: none;
}

.lightbox-track figure {
  display: grid;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 3dvh 6vw;
  place-items: center;
  scroll-snap-align: center;
}

.lightbox-track img {
  width: auto;
  max-width: min(90vw, 520px);
  height: auto;
  max-height: 94dvh;
  border-radius: 1.2rem;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-arrow {
  position: fixed;
  z-index: 5;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.25);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(37, 35, 30, 0.78);
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-arrow--prev {
  left: 1rem;
}

.lightbox-arrow--next {
  right: 1rem;
}

.lightbox-arrow:disabled {
  opacity: 0.28;
}

.lightbox-count {
  position: fixed;
  z-index: 5;
  bottom: 0.8rem;
  left: 50%;
  margin: 0;
  padding: 0.32rem 0.62rem;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(37, 35, 30, 0.82);
  font-family: var(--display);
  font-size: 0.73rem;
  transform: translateX(-50%);
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-a {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-5deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(-2deg); }
}

@keyframes float-b {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(5deg); }
  50% { transform: translate3d(-7px, -12px, 0) rotate(2deg); }
}

@keyframes float-c {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-3deg); }
  50% { transform: translate3d(5px, -8px, 0) rotate(1deg); }
}

@keyframes plan-in {
  from { opacity: 0; transform: translateY(8px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 160px 1fr auto;
  }

  .site-nav {
    gap: 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  }

  .hero-art {
    min-height: 580px;
  }

  .hero-prop figcaption {
    display: none;
  }

  .tour-layout,
  .pricing-layout,
  .faq-layout {
    gap: 3.5rem;
  }

  .recommender-live {
    grid-template-columns: minmax(330px, 0.82fr) minmax(390px, 1.18fr);
  }
}

@media (max-width: 880px) {
  :root {
    --header: 70px;
  }

  .shell {
    width: min(calc(100% - 2.25rem), var(--shell));
  }

  .site-nav {
    display: none;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .hero-grid,
  .tour-layout,
  .pricing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 2rem 0 0;
  }

  .hero-art {
    width: min(100%, 650px);
    min-height: 610px;
    margin-inline: auto;
  }

  .trust-rail {
    grid-template-columns: auto 1fr;
    margin-top: 0;
  }

  .trust-rail strong {
    text-align: right;
  }

  .trust-rail > span {
    grid-column: 1 / -1;
    max-width: none;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .recommender-live {
    grid-template-columns: 1fr;
  }

  .recommender-controls {
    border-right: 0;
    border-bottom: 1px solid rgba(49, 45, 39, 0.12);
  }

  .overview-head,
  .whole-home-heading {
    grid-template-columns: 1fr;
  }

  .overview-head > p:last-child,
  .whole-home-heading > p:last-child {
    max-width: 640px;
  }

  .tour-copy {
    max-width: 700px;
  }

  .carousel-stage {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .pricing-copy,
  .faq-heading {
    position: static;
  }

  .privacy-band {
    grid-template-columns: 90px 1fr;
  }

  .privacy-band > p {
    grid-column: 2;
    margin-top: 1rem;
  }

  .final-card {
    grid-template-columns: 0.7fr 1.3fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .section {
    padding-block: 5.5rem;
  }

  .brand {
    width: 126px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 0.8rem;
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.55rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art {
    min-height: 470px;
    margin-top: 1rem;
  }

  .hero-art::before {
    right: 0;
    left: 0;
  }

  .hero-phone {
    top: 13%;
    width: 106%;
  }

  .hero-prop--laundry {
    left: -5%;
    width: 28%;
  }

  .hero-prop--plants {
    right: -2%;
    width: 27%;
  }

  .hero-prop--trash {
    width: 23%;
  }

  .trust-rail {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding-block: 1.15rem;
    flex-direction: column;
  }

  .trust-rail strong {
    font-size: 1.02rem;
    line-height: 1.55;
    text-align: left;
  }

  .trust-rail strong span {
    margin-inline: 0.28rem;
  }

  .trust-rail > span {
    width: 100%;
    padding-top: 0.7rem;
  }

  .section-heading h2,
  .overview-head h2,
  .tour-copy h2,
  .pricing-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .recommender-live {
    padding-top: 3.25rem;
    border-radius: 1.3rem;
  }

  .live-chrome {
    height: 3.25rem;
    padding-inline: 1rem;
  }

  .live-chrome span {
    font-size: 0.58rem;
  }

  .recommender-controls,
  .recommender-result {
    padding: 1.35rem;
  }

  .profile-chip span {
    min-height: 44px;
    padding-inline: 0.75rem;
  }

  .age-slider {
    height: 44px;
  }

  .sample-plan li {
    grid-template-columns: 22px 48px 1fr;
    padding: 0.6rem;
  }

  .sample-plan img {
    width: 48px;
    height: 48px;
  }

  .recommender-result .outcome-cta,
  .outcome-cta--tour {
    width: 100%;
  }

  .overview-flow {
    grid-template-columns: 1fr;
  }

  .overview-flow article,
  .overview-flow article:first-child,
  .overview-flow article:last-child {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .overview-flow article:last-child {
    border-bottom: 0;
  }

  .overview {
    padding-block: 5.5rem;
  }

  .overview-head h2 {
    font-size: clamp(2.35rem, 10.7vw, 3.5rem);
  }

  .overview-caption {
    gap: 0.55rem;
    font-size: 0.55rem;
  }

  .carousel-slide {
    padding-inline: 0.5rem;
  }

  .carousel-slide img {
    width: min(100%, 390px);
    border-radius: 1rem;
  }

  .home-features {
    display: block;
  }

  .home-feature,
  .home-feature--calendar,
  .home-feature--grocery,
  .home-feature--wrap {
    margin: 0 0 2.5rem;
  }

  .price-ledger article {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .price-ledger article > div {
    grid-template-columns: 96px 1fr;
  }

  .price-ledger--accent {
    margin-inline: 0;
    padding-inline: 1rem !important;
  }

  .privacy-band {
    grid-template-columns: 64px 1fr;
    padding: 1.2rem;
  }

  .privacy-band > img {
    width: 58px;
    height: 58px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta {
    padding-inline: 0.75rem;
  }

  .final-card {
    display: flex;
    min-height: auto;
    padding-top: 2.5rem;
    flex-direction: column-reverse;
    border-radius: 1.4rem;
  }

  .final-card > img {
    width: 100%;
    height: auto;
    max-height: 360px;
  }

  .final-card > div {
    padding: 1.5rem;
  }

  .final-card h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer p,
  .footer-meta {
    justify-self: start;
  }

  .site-footer nav,
  .footer-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .lightbox-arrow {
    display: none;
  }

  .lightbox-track figure {
    padding: 2dvh 1rem 4dvh;
  }
}

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

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