@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  color-scheme: light;
  --hollow-teal: #0e7c66;
  --graphite: #2e3138;
  --warm-ivory: #fffdf9;
  --sea-glass: #5ec7b7;
  --soft-gold: #d4a63e;
  --mist: #eef5f2;
  --line: #d9dfdc;
  --muted: #626a70;
  --panel: var(--warm-ivory);
  --cloud-rice: var(--mist);
  --signal-green: var(--hollow-teal);
  --fresh-basil: var(--sea-glass);
  --persimmon: var(--soft-gold);
  --soft: #e8f3f0;
  --shadow: 0 18px 60px rgba(46, 49, 56, 0.12);
  --cleaning-hero-image: image-set(
    url("assets/cleaning-timer-hero.webp") type("image/webp"),
    url("assets/cleaning-timer-hero.png") type("image/png")
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background: var(--cloud-rice);
}

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

picture {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  background: rgba(246, 244, 238, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
.header-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: Sora, Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  position: relative;
  display: grid;
  place-items: center;
  border: 2px solid var(--hollow-teal);
  border-radius: 50%;
  background: var(--panel);
}

.brand-mark::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hollow-teal);
  box-shadow: inset 0 0 0 6px var(--panel);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--soft-gold);
}

.header-nav {
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.header-action,
.primary-button,
.secondary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.header-action,
.primary-button {
  border: 1px solid var(--signal-green);
  color: var(--panel);
  background: var(--signal-green);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--signal-green);
  background: var(--panel);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: min(760px, calc(100vh - 112px));
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: clamp(28px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(246, 244, 238, 0.98) 0%, rgba(246, 244, 238, 0.92) 42%, rgba(246, 244, 238, 0.18) 78%),
    var(--cleaning-hero-image) right center / min(760px, 62vw) auto no-repeat,
    var(--cloud-rice);
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 620px;
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0;
  color: var(--persimmon);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: var(--signal-green);
  font-size: clamp(4.4rem, 8vw, 7.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  line-height: 1.6;
}

.hero-lede {
  max-width: 650px;
  color: #3e4741;
  font-size: clamp(1.13rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.proof-points {
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-points div {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.proof-points dt {
  color: var(--signal-green);
  font-weight: 900;
}

.proof-points dd {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-loop,
.feature-band,
.updates-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-heading {
  max-width: 760px;
  display: grid;
  gap: 14px;
}

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

.loop-grid article,
.updates-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(37, 42, 39, 0.08);
}

.loop-grid article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--panel);
  background: var(--fresh-basil);
  font-weight: 900;
}

.loop-grid p,
.feature-copy p,
.updates-section p,
.form-note {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.feature-copy {
  display: grid;
  gap: 16px;
}

.feature-images {
  display: grid;
  gap: 18px;
}

.feature-images picture,
.feature-images img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(37, 42, 39, 0.08);
}

.feature-images picture img {
  width: 100%;
}

.feature-images picture {
  overflow: hidden;
}

.feature-images > img:last-child {
  width: 86%;
  justify-self: end;
}

.feature-card {
  width: 86%;
  justify-self: end;
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(37, 42, 39, 0.08);
}

.feature-card h3 {
  color: var(--graphite);
}

.menu-next-card {
  max-width: 620px;
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid #cbd9c0;
  border-radius: 8px;
  background: #f1f4eb;
}

.menu-next-card h3 {
  color: var(--graphite);
}

.menu-next-card p:last-child {
  color: var(--muted);
}

.updates-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.updates-section > div {
  display: grid;
  gap: 16px;
}

.updates-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.updates-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.updates-form input,
.updates-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--graphite);
  background: #fffefa;
}

.updates-form button {
  width: 100%;
  cursor: pointer;
}

.mailchimp-bot-field {
  position: absolute;
  left: -5000px;
}

.form-note,
.legal-note {
  font-size: 0.86rem;
}

.legal-note {
  color: var(--muted);
  line-height: 1.5;
}

.legal-note a {
  color: var(--signal-green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.updates-panel {
  align-content: start;
}

.updates-count {
  color: var(--signal-green);
  font-weight: 900;
}

.waitlist-page {
  background:
    linear-gradient(180deg, rgba(246, 244, 238, 0.95), rgba(237, 242, 232, 0.92)),
    var(--cloud-rice);
}

.waitlist-hero {
  width: min(1180px, calc(100% - 32px));
  min-height: min(720px, calc(100vh - 112px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(246, 244, 238, 0.98) 0%, rgba(246, 244, 238, 0.94) 52%, rgba(246, 244, 238, 0.3) 100%),
    var(--cleaning-hero-image) right bottom / min(620px, 54vw) auto no-repeat,
    var(--cloud-rice);
  box-shadow: var(--shadow);
}

.waitlist-copy {
  max-width: 720px;
  display: grid;
  gap: 22px;
}

.waitlist-copy h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.waitlist-notes {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.waitlist-notes li + li {
  margin-top: 8px;
}

.waitlist-card {
  background: rgba(255, 253, 248, 0.92);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.site-footer a,
.legal-page a {
  color: var(--signal-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) 0 80px;
  display: grid;
  gap: 18px;
}

.legal-page h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.legal-page h2 {
  margin-top: 22px;
  color: var(--signal-green);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.legal-page p,
.legal-page li {
  color: #3e4741;
}

.legal-page code {
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--soft);
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    flex-wrap: wrap;
  }

  .header-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .feature-band,
  .updates-section,
  .waitlist-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(246, 244, 238, 0.99) 0%, rgba(246, 244, 238, 0.94) 52%, rgba(246, 244, 238, 0.2) 100%),
      var(--cleaning-hero-image) center bottom / 112% auto no-repeat,
      var(--cloud-rice);
    padding-bottom: min(42vw, 190px);
  }

  .loop-grid,
  .proof-points {
    grid-template-columns: 1fr;
  }

  .feature-images > img:last-child,
  .feature-card {
    width: 100%;
  }

  .waitlist-hero {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(246, 244, 238, 0.99) 0%, rgba(246, 244, 238, 0.94) 62%, rgba(246, 244, 238, 0.2) 100%),
      var(--cleaning-hero-image) center bottom / 112% auto no-repeat,
      var(--cloud-rice);
    padding-bottom: min(42vw, 190px);
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .product-loop,
  .feature-band,
  .updates-section,
  .waitlist-hero {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 28px;
    padding-inline: 18px;
    padding-bottom: 118px;
  }

  .waitlist-hero {
    padding: 28px 18px 118px;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4rem);
  }

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

  .proof-points {
    display: none;
  }
}

.founders-page .site-header {
  border-bottom: 1px solid rgba(215, 216, 207, 0.78);
}

.founder-hero {
  width: min(1180px, calc(100% - 32px));
  min-height: min(720px, calc(100vh - 104px));
  margin: 0 auto;
  display: grid;
  align-items: end;
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(37, 42, 39, 0.08) 0%, rgba(37, 42, 39, 0.2) 42%, rgba(37, 42, 39, 0.78) 100%),
    var(--cleaning-hero-image) center center / cover no-repeat,
    var(--signal-green);
  box-shadow: var(--shadow);
}

.founder-hero-copy {
  max-width: 860px;
  display: grid;
  gap: 22px;
}

.founder-hero h1 {
  max-width: 930px;
  color: var(--panel);
  font-size: clamp(3rem, 6.3vw, 6.6rem);
}

.founder-hero .hero-lede {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.9);
}

.founder-letter,
.founder-belief-band,
.founder-product-proof,
.founder-closing {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 98px) 0;
}

.founder-letter {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.founder-letter-heading {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.letter-body {
  display: grid;
  gap: 22px;
  color: #3e4741;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.letter-body p {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.letter-body p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.founder-belief-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-belief-band > div:first-child,
.proof-copy,
.founder-closing {
  display: grid;
  gap: 16px;
}

.founder-belief-band p,
.proof-copy p,
.founder-closing p,
.belief-list p {
  color: var(--muted);
}

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

.belief-list article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-areas:
    "number title"
    "number copy";
  gap: 8px 18px;
  align-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(37, 42, 39, 0.08);
}

.belief-list span {
  grid-area: number;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--panel);
  background: var(--fresh-basil);
  font-weight: 900;
}

.belief-list h3 {
  grid-area: title;
}

.belief-list p {
  grid-area: copy;
}

.founder-product-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.proof-images {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: 16px;
  align-items: center;
}

.proof-images picture,
.proof-images img,
.proof-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(37, 42, 39, 0.08);
}

.proof-images picture {
  height: 100%;
  overflow: hidden;
}

.proof-images img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.proof-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.proof-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.proof-card li + li {
  margin-top: 10px;
}

.founder-beliefs {
  border-top: 0;
}

.founder-closing {
  max-width: min(940px, calc(100% - 32px));
  text-align: center;
  justify-items: center;
}

.founder-closing h2 {
  color: var(--signal-green);
}

@media (max-width: 900px) {
  .founder-hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(37, 42, 39, 0.04) 0%, rgba(37, 42, 39, 0.24) 42%, rgba(37, 42, 39, 0.82) 100%),
      var(--cleaning-hero-image) center center / cover no-repeat,
      var(--signal-green);
  }

  .founder-letter,
  .founder-belief-band,
  .founder-product-proof {
    grid-template-columns: 1fr;
  }

  .founder-letter-heading {
    position: static;
  }
}

@media (max-width: 560px) {
  .founder-hero,
  .founder-letter,
  .founder-belief-band,
  .founder-product-proof,
  .founder-closing {
    width: min(100% - 24px, 1180px);
  }

  .founder-hero {
    min-height: 560px;
    padding: 24px 18px;
    background:
      linear-gradient(180deg, rgba(37, 42, 39, 0.04) 0%, rgba(37, 42, 39, 0.28) 38%, rgba(37, 42, 39, 0.86) 100%),
      var(--cleaning-hero-image) 56% center / cover no-repeat,
      var(--signal-green);
  }

  .founder-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .belief-list article,
  .proof-images {
    grid-template-columns: 1fr;
  }

  .belief-list article {
    grid-template-areas:
      "number"
      "title"
      "copy";
  }

  .proof-card {
    padding: 18px;
  }
}
