:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5e5e63;
  --paper: #fbfaf7;
  --white: #ffffff;
  --green: #2f8f42;
  --green-soft: #eef7ea;
  --blue: #1f66b1;
  --blue-soft: #eef6ff;
  --purple: #7357c7;
  --purple-soft: #f1edff;
  --red: #bd3d31;
  --red-soft: #fff0ed;
  --shadow-soft: 0 30px 90px rgb(35 35 35 / 12%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 9%, rgb(47 143 66 / 7%), transparent 24rem),
    radial-gradient(circle at 92% 34%, rgb(115 87 199 / 7%), transparent 28rem),
    var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(46px, 5.4vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.8vw, 80px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 86px clamp(20px, 4vw, 48px);
}

.hero {
  min-height: 92vh;
  padding-top: 20px;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 11px 14px 11px 26px;
  border: 1px solid rgb(0 0 0 / 6%);
  border-radius: 999px;
  background: rgb(255 255 255 / 80%);
  box-shadow: 0 18px 50px rgb(32 32 32 / 6%);
  backdrop-filter: blur(18px);
}

.nav .brand {
  justify-self: start;
}

.nav-links {
  display: flex;
  justify-self: center;
  gap: 30px;
}

.nav-links a {
  color: #54545a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav .nav-cta {
  justify-self: end;
}

@media (max-width: 880px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #303034;
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav-cta,
.primary-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
}

.nav-cta {
  min-height: 40px;
  padding: 0 20px;
  background: #1d1d1f;
  color: var(--white);
  box-shadow: 0 10px 24px rgb(0 0 0 / 14%);
}

.primary-button {
  margin-top: 22px;
  padding: 0 28px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 38px rgb(47 143 66 / 26%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 48px;
  padding-top: 36px;
}

.hero-copy {
  max-width: 670px;
}

.lead {
  color: #4d4d52;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
}

.body-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
}

.hero-media::after {
  position: absolute;
  inset: auto 13% -20px;
  height: 70px;
  border-radius: 999px;
  background: rgb(0 0 0 / 10%);
  filter: blur(32px);
  content: "";
}

.hero-media img,
.product-image,
.phone-image,
.step-card img,
.light-feature-image,
.wrong-tile img,
.duration-explainer {
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
}

.hero-img-primary {
  aspect-ratio: 4 / 3;
}

.hero-img-secondary {
  aspect-ratio: 4 / 3;
}

.problem {
  padding: 104px 20px;
}

.centered-copy {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.one-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px auto 36px;
}

.one-more-grid p,
.step-card {
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: 24px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 14px 50px rgb(20 20 20 / 6%);
}

.one-more-grid p {
  margin: 0;
  padding: 22px;
  color: #303034;
  font-size: 18px;
  font-weight: 750;
}

.product-section,
.split-section,
.tile-library,
.family-section,
.skins-section,
.learning-section,
.recap-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52px;
}

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

.secondary-product-image {
  width: 74%;
  justify-self: end;
}

.product-copy {
  max-width: 620px;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.green {
  color: var(--green);
}

.blue {
  color: var(--blue);
}

.purple {
  color: var(--purple);
}

.red {
  color: var(--red);
}

.check-list,
.plain-list,
.stacked-lines {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  color: #303034;
  font-size: 18px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.check-list li::before {
  display: block;
  flex: 0 0 auto;
  width: 9px;
  height: 15px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  content: "";
}

.mantra-section {
  padding: 76px 20px;
  background: #1d1d1f;
  text-align: center;
}

.mantra-section p {
  width: min(100%, 900px);
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.step-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(22px, 2.3vw, 30px);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 850;
}

.step-number.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.step-number.purple {
  background: var(--purple-soft);
  color: var(--purple);
}

.step-number.red {
  background: var(--red-soft);
  color: var(--red);
}

.step-card p,
.step-card li,
.wrong-tile p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.step-card p {
  margin-bottom: 26px;
}

.plain-list {
  display: grid;
  gap: 5px;
  margin: 6px 0 18px;
}

.step-card img {
  width: 100%;
  aspect-ratio: 1.08;
  margin-top: auto;
  object-fit: cover;
}

.phone-interface-crop {
  width: 100%;
  aspect-ratio: 1;
  margin-top: auto;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.step-card .phone-interface-crop img {
  width: 100%;
  height: 100%;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 45%;
  transform: scale(1.18);
}

.split-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 52px;
}

.light-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 52px;
}

.light-copy {
  max-width: 650px;
}

.light-feature-image {
  width: 100%;
  aspect-ratio: 1.33;
  object-fit: cover;
}

.wrong-tile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  padding: 20px;
  border-radius: 36px;
  background: var(--red-soft);
}

.wrong-tile h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(26px, 3.2vw, 48px);
}

.parent-control {
  background: var(--white);
}

.phone-image {
  width: min(100%, 620px);
  margin: 0 auto;
}

.stacked-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  color: #303034;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 700;
}

.family-copy {
  max-width: 640px;
}

.family-rules {
  margin-top: 22px;
  color: #303034;
  font-size: 18px;
  font-weight: 700;
}

.family-media {
  width: 100%;
}

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

.family-support-grid img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.family-support-grid img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  object-position: center;
}

.family-support-grid img:not(:first-child) {
  aspect-ratio: 1.04;
}

.learning-copy {
  max-width: 650px;
}

.skins-copy {
  max-width: 650px;
}

.skins-image {
  width: 100%;
  aspect-ratio: 1.33;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.learning-image {
  width: 100%;
  aspect-ratio: 1.28;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.recap-image {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.duration-grid p {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  font-weight: 800;
}

.duration-grid .short {
  border: 1px solid #96c98a;
  background: #edf8ed;
  color: #2f7d38;
}

.duration-grid .medium {
  border: 1px solid #8bb7e5;
  background: var(--blue-soft);
  color: var(--blue);
}

.duration-grid .long {
  border: 1px solid #bca9f0;
  background: var(--purple-soft);
  color: var(--purple);
}

.duration-explainer {
  width: 100%;
  margin-top: 0;
}

.cta-panel {
  overflow: hidden;
  border-radius: 36px;
  background: #1d1d1f;
  color: var(--white);
  text-align: center;
  box-shadow: 0 34px 100px rgb(20 20 20 / 18%);
}

.cta-copy {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
}

.cta-copy .body-copy {
  color: rgb(255 255 255 / 76%);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 12px;
  margin-top: 34px;
}

input,
select {
  width: 100%;
  height: 56px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 999px;
  background: var(--white);
  color: #1d1d1f;
  outline: 0;
  padding: 0 20px;
}

select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #5e5e63 50%),
    linear-gradient(135deg, #5e5e63 50%, transparent 50%);
  background-position:
    calc(100% - 25px) 50%,
    calc(100% - 18px) 50%;
  background-repeat: no-repeat;
  background-size: 7px 7px;
}

input:focus,
select:focus {
  border-color: #8fd68a;
  box-shadow: 0 0 0 4px rgb(143 214 138 / 18%);
}

.submit-button {
  margin-top: 16px;
  padding: 0 28px;
  background: #6bbf58;
  color: var(--white);
}

.form-message {
  min-height: 28px;
  margin: 14px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 14px;
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .product-section,
  .split-section,
  .tile-library,
  .family-section,
  .skins-section,
  .learning-section,
  .recap-section,
  .cta-panel,
  .light-feature,
  .split-copy,
  .wrong-tile {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 52px;
  }

  .product-copy {
    order: 1;
  }

  .product-images {
    order: 2;
  }

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

}

@media (max-width: 680px) {
  .section-shell {
    padding: 64px 20px;
  }

  .problem {
    padding: 64px 20px 28px;
  }

  .hero {
    padding-top: 20px;
  }

  .nav {
    padding: 10px 12px;
  }

  .nav-cta {
    padding: 0 16px;
  }

  .brand {
    font-size: 17px;
  }

  .hero-grid {
    gap: 34px;
    padding-top: 42px;
  }

  .split-copy {
    gap: 20px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .steps-grid,
  .one-more-grid,
  .duration-grid,
  .form-grid,
  .family-support-grid {
    grid-template-columns: 1fr;
  }

  .mantra-section {
    padding: 56px 20px;
  }

  .step-card img,
  .light-feature-image,
  .wrong-tile img {
    aspect-ratio: 1.12;
  }

  .cta-copy {
    padding: 36px 28px;
  }

  .submit-button {
    width: 100%;
  }
}

/* ----------------------------------------------------------------
   Mosey additions
   ---------------------------------------------------------------- */

/* Hero headline tuned for the longer two-sentence line */
.hero h1 {
  max-width: 20ch;
  font-size: clamp(40px, 4.6vw, 74px);
}

/* Tighten the gap below the hero on desktop (drop the full-height stretch) */
.hero {
  min-height: auto;
  padding-bottom: 36px;
}

/* Hero: primary + secondary action pair */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-actions .primary-button {
  margin-top: 0;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: rgb(0 0 0 / 6%);
  color: #1d1d1f;
  font-weight: 750;
  text-decoration: none;
  transition: background 0.18s ease;
}

.secondary-button:hover {
  background: rgb(0 0 0 / 10%);
}

/* Why Mosey — copy + image split */
.appreciate-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52px;
}

.appreciate-copy {
  max-width: 640px;
}

.appreciate-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* Three kinds of tiles */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 22px;
  margin-top: 52px;
}

.tile-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: 28px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 14px 50px rgb(20 20 20 / 6%);
}

.tile-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.tile-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 30px);
}

.tile-card h3 {
  margin-bottom: 12px;
}

.tile-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.tile-card p:last-child {
  margin-bottom: 0;
}

.tile-card .tile-lead {
  color: #303034;
  font-size: 17px;
  font-weight: 650;
}

/* How Mosey works — compact 2-column card grid (copy above image) */
.mosey-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 52px;
}

.mosey-step {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: 28px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 14px 50px rgb(20 20 20 / 6%);
}

.mosey-step-copy {
  padding: clamp(24px, 2.4vw, 32px);
}

.mosey-step-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.mosey-step-copy .check-list {
  margin-top: 18px;
  font-size: 16px;
}

.mosey-step-media {
  margin: 0;
  margin-top: auto;
}

.mosey-step-media img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
}

/* Step 5's ending shot: bias the crop to the top so the full "Goodbye" + waving elephants stay in frame */
.mosey-step-media img.is-ending {
  object-position: center top;
}

/* Step 2's parent-app phone shows in full, centered on a soft panel */
.mosey-step-media.is-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, var(--blue-soft), var(--white));
}

.mosey-step-media.is-phone img {
  width: auto;
  max-width: 100%;
  max-height: 320px;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 20px 0;
}

/* Step 1's clean product shot shows in full (no cropping) */
.mosey-step-media.is-product {
  background: var(--white);
}

.mosey-step-media.is-product img {
  object-fit: contain;
}

/* Center the final step only when it's an orphan (odd total count) */
.mosey-step:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: calc(50% - 11px);
}

@media (max-width: 980px) {
  .appreciate-section {
    grid-template-columns: 1fr;
  }

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

  .mosey-step:last-child:nth-child(odd) {
    max-width: none;
  }

  .appreciate-image {
    aspect-ratio: 4 / 3;
  }
}

/* Hero inline email sign-up */
.hero-signup {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(100%, 440px);
  padding: 7px 7px 7px 22px;
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 16px 38px rgb(47 143 66 / 12%);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-signup:focus-within {
  border-color: #8fd68a;
  box-shadow: 0 0 0 4px rgb(143 214 138 / 18%), 0 16px 38px rgb(47 143 66 / 12%);
}

.hero-signup input {
  flex: 1;
  width: auto;
  min-width: 0;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

.hero-signup input::placeholder {
  color: #8a8a8f;
}

.hero-signup input:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}

.hero-signup-submit {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgb(47 143 66 / 26%);
  transition: background 0.18s ease;
}

.hero-signup-submit:hover {
  background: #2a7f3b;
}

.hero-form-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Hero proof badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4d4d52;
  font-size: 15px;
  font-weight: 600;
}

.hero-badges li::before {
  content: "✓";
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

/* "What Mosey will never do" — trust / promise */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 14px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.promise-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: 18px;
  background: rgb(255 255 255 / 80%);
  box-shadow: 0 10px 36px rgb(20 20 20 / 5%);
  color: #303034;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.promise-grid li::before {
  content: "✓";
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.promise-close {
  margin: 34px 0 0;
  text-align: center;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 750;
}

/* Launch / urgency bar */
.launch-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  padding: 10px 20px;
  background: #1d1d1f;
  color: rgb(255 255 255 / 90%);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.launch-bar strong {
  color: #fff;
  font-weight: 750;
}

.launch-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8fd68a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.launch-bar-link:hover {
  color: #abe3a6;
  text-decoration: underline;
}

/* Parallel microcopy band (delight ↔ reassurance) */
.microcopy-band .section-shell {
  padding-top: 6px;
  padding-bottom: 6px;
}

.microcopy-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.microcopy-list li {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
}

.microcopy-list strong {
  color: var(--ink);
  font-weight: 750;
}

/* "You set the time" callout in the Why Mosey section */
.time-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 26px 0;
  padding: 18px 20px;
  border: 1px solid rgb(47 143 66 / 22%);
  border-radius: 20px;
  background: var(--green-soft);
}

.time-callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  box-shadow: 0 4px 12px rgb(47 143 66 / 16%);
}

.time-callout-body h3 {
  margin: 3px 0 6px;
  font-size: 19px;
  line-height: 1.2;
  color: var(--ink);
}

.time-callout-body p {
  margin: 0;
  color: #355a3d;
  font-size: 16px;
  line-height: 1.55;
}

.appreciate-copy .body-copy strong {
  color: var(--ink);
  font-weight: 750;
}

/* ── Shop rows: Mosey Accessories + Tile Packs (horizontal scroll) ── */
.shop-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.shop-scroller {
  display: flex;
  gap: 22px;
  margin-top: 44px;
  padding: 6px 2px 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgb(0 0 0 / 22%) transparent;
}

.shop-scroller::-webkit-scrollbar {
  height: 8px;
}

.shop-scroller::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgb(0 0 0 / 16%);
}

.shop-scroller::-webkit-scrollbar-track {
  background: transparent;
}

.shop-card {
  display: flex;
  flex: 0 0 clamp(248px, 78vw, 300px);
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: 28px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 14px 50px rgb(20 20 20 / 6%);
}

.shop-card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.3;
  overflow: hidden;
  font-size: 66px;
  line-height: 1;
}

.shop-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-card-media.is-photo {
  background: var(--white);
}

.shop-card-media.tint-green {
  background: linear-gradient(155deg, var(--green-soft), #fff);
}

.shop-card-media.tint-blue {
  background: linear-gradient(155deg, var(--blue-soft), #fff);
}

.shop-card-media.tint-purple {
  background: linear-gradient(155deg, var(--purple-soft), #fff);
}

.shop-card-media.tint-red {
  background: linear-gradient(155deg, var(--red-soft), #fff);
}

.shop-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(20px, 2vw, 26px);
}

.shop-card-body h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.shop-card-body p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.shop-card-body .shop-price {
  margin: auto 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
}

/* MEET MOSEY'S VILLAGE */
.village-section .centered-copy {
  margin-bottom: 40px;
}

.village-hero {
  width: min(100%, 1100px);
  margin: 0 auto 44px;
}

.village-hero img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.village-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px 18px;
}

.village-grid figure {
  margin: 0;
  text-align: center;
}

.village-grid img {
  width: auto;
  height: 190px;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgb(30 43 37 / 18%));
}

.village-grid figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.village-grid figcaption span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 680px) {
  .village-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .village-grid img {
    height: 150px;
  }
}

/* THREE GAME WORLDS */
.gameworlds-section .centered-copy {
  margin-bottom: 44px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gamecard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: 24px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 14px 50px rgb(20 20 20 / 6%);
}

.gamecard img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.gamecard-body {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.gamecard-body h3 {
  margin-bottom: 10px;
}

.gamecard-body p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.gamecard-skills {
  margin-top: auto;
  margin-bottom: 0 !important;
  color: var(--green) !important;
  font-size: 14px !important;
  font-weight: 800;
}


/* ── Fake-door commerce (demo site) ─────────────────────────────── */

/* Pricing section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 50px rgba(23, 23, 23, 0.08);
}
.pricing-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.pricing-card.is-membership {
  background: #eef7ea;
  border-color: #cfe8c9;
}
.pricing-card-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pricing-card-body h3 { font-size: 1.35rem; }
.pricing-price {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.pricing-term {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5e5e63;
  letter-spacing: 0;
}
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pricing-list li {
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #3c3c40;
}
.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f8f42;
  font-weight: 800;
}

/* Buy buttons */
.buy-button {
  border: 0;
  border-radius: 12px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: #2f8f42;
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 143, 66, 0.25);
  transition: background 0.15s ease;
}
.buy-button:hover { background: #256e34; }
.shop-card .buy-button {
  margin-top: 12px;
  width: 100%;
  padding: 11px 16px;
  font-size: 0.92rem;
}

/* Cart floating button */
.cart-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: #171717;
  color: #fff;
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-count {
  background: #2f8f42;
  border-radius: 999px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0 7px;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 23, 23, 0.4);
  z-index: 70;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 92vw);
  background: #fbfaf7;
  z-index: 80;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: -18px 0 50px rgba(23, 23, 23, 0.18);
}
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-head h3 { font-size: 1.3rem; }
.cart-close {
  border: 0;
  background: none;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  color: #5e5e63;
}
.cart-items {
  list-style: none;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-items li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
}
.cart-item-name { flex: 1; font-weight: 600; font-size: 0.95rem; }
.cart-item-price { font-weight: 800; }
.cart-item-remove {
  border: 0;
  background: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: #bd3d31;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 23, 23, 0.12);
}
.cart-checkout { width: 100%; }

/* Honest reveal modal */
.reveal-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(23, 23, 23, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}
.reveal-card {
  background: #fbfaf7;
  border-radius: 20px;
  padding: 36px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 30px 80px rgba(23, 23, 23, 0.3);
}
.reveal-card h3 { font-size: 1.5rem; letter-spacing: -0.02em; }
.reveal-card form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.reveal-card input {
  flex: 1 1 220px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 12px;
  padding: 13px 16px;
  font: inherit;
  background: #fff;
}
.reveal-close {
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.9rem;
  color: #5e5e63;
  cursor: pointer;
  text-decoration: underline;
  align-self: center;
  margin-top: 4px;
}

/* Keep [hidden] authoritative over flex display rules */
.cart-fab[hidden], .cart-drawer[hidden], .cart-overlay[hidden], .reveal-modal[hidden] { display: none; }
