
.cslb-landing,
.cslb-landing * {
  box-sizing: border-box;
}

.cslb-landing {
  --cslb-ink: #111310;
  --cslb-muted: #687067;
  --cslb-line: #dde1da;
  --cslb-card: #ffffff;
  --cslb-shadow: 0 24px 70px rgba(24, 31, 24, .11);
  --cslb-soft-shadow: 0 14px 34px rgba(24, 31, 24, .08);
  overflow: clip;
  color: var(--cslb-ink);
  background:
    radial-gradient(circle at 94% 3%, color-mix(in srgb, var(--cslb-primary) 10%, transparent), transparent 30rem),
    radial-gradient(circle at 5% 30%, color-mix(in srgb, var(--cslb-secondary) 9%, transparent), transparent 28rem),
    var(--cslb-bg);
  font-family: var(--cslb-font);
  line-height: 1.5;
}

.cslb-landing button,
.cslb-landing input {
  font: inherit;
}

.cslb-landing button {
  cursor: pointer;
}

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

.cslb-container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.cslb-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 34px 0 58px;
}

.cslb-hero-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.cslb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--cslb-secondary);
  background: color-mix(in srgb, var(--cslb-secondary) 13%, white);
  font-size: 14px;
  font-weight: 700;
}

.cslb-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.cslb-hero h1 {
  margin: 19px 0 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 700;
}

.cslb-hero h1 span {
  display: block;
  color: var(--cslb-primary);
}

.cslb-hero-copy {
  max-width: 650px;
  margin: 23px 0 0;
  color: var(--cslb-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
}

.cslb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.cslb-primary-button,
.cslb-secondary-button {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  border: 0;
  font-weight: 700;
}

.cslb-primary-button {
  background: var(--cslb-ink);
  color: #fff;
  box-shadow: var(--cslb-soft-shadow);
}

.cslb-secondary-button {
  background: #fff;
  border: 1px solid var(--cslb-line);
  color: var(--cslb-ink);
}

.cslb-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.cslb-trust span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(17,19,16,.07);
  font-size: 13px;
  font-weight: 600;
}

.cslb-hero-product {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 46px;
  background:
    radial-gradient(circle at 75% 15%, rgba(255,255,255,.98), transparent 24%),
    linear-gradient(145deg, color-mix(in srgb, var(--cslb-secondary) 14%, white), #fafbf9 52%, color-mix(in srgb, var(--cslb-primary) 8%, white));
  box-shadow: var(--cslb-shadow);
  isolation: isolate;
}

.cslb-hero-product::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(17,19,16,.08);
  box-shadow: 0 0 0 34px rgba(255,255,255,.28), 0 0 0 76px rgba(255,255,255,.17);
  animation: cslb-orbit 7s ease-in-out infinite;
}

@keyframes cslb-orbit {
  0%,100% { transform: translate(-50%, -50%) scale(.96) rotate(-2deg); }
  50% { transform: translate(-50%, -50%) scale(1.03) rotate(2deg); }
}

.cslb-hero-image {
  position: absolute;
  width: 82%;
  max-height: 76%;
  object-fit: contain;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 24px 30px rgba(25,35,25,.18));
}

.cslb-price-badge,
.cslb-composition-badge {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.cslb-price-badge {
  right: 6%;
  top: 6%;
  width: 122px;
  height: 122px;
  border-radius: 34px;
  background: var(--cslb-primary);
  transform: rotate(4deg);
}

.cslb-composition-badge {
  left: 6%;
  top: 12%;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: var(--cslb-ink);
  transform: rotate(-4deg);
}

.cslb-price-badge strong {
  font-size: 34px;
  line-height: 1;
}

.cslb-composition-badge strong {
  font-size: 30px;
  line-height: 1;
}

.cslb-price-badge small,
.cslb-composition-badge small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.cslb-scroll-button {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 0;
  border-radius: 999px;
  background: var(--cslb-ink);
  color: #fff;
  font-weight: 700;
}

.cslb-scroll-button span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cslb-primary);
  animation: cslb-down 1.25s ease-in-out infinite;
}

@keyframes cslb-down {
  0%,100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

.cslb-story-intro {
  padding: 92px 0 28px;
  text-align: center;
}

.cslb-story-intro h2 {
  margin: 0;
  font-size: clamp(35px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.cslb-story-intro p {
  max-width: 700px;
  margin: 15px auto 0;
  color: var(--cslb-muted);
  font-size: 17px;
  line-height: 1.8;
}

.cslb-scroll-story {
  display: grid;
  grid-template-columns: minmax(410px, .95fr) minmax(430px, 1.05fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  direction: ltr;
  padding-bottom: 92px;
}

.cslb-stage-wrap {
  position: sticky;
  top: 14px;
  height: min(76svh, 760px);
  direction: inherit;
}

.cslb-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 20px;
  border-radius: 42px;
  border: 1px solid rgba(17,19,16,.07);
  background:
    radial-gradient(circle at 14% 16%, color-mix(in srgb, var(--cslb-secondary) 11%, transparent), transparent 28%),
    radial-gradient(circle at 86% 82%, color-mix(in srgb, var(--cslb-primary) 10%, transparent), transparent 30%),
    #fff;
  box-shadow: var(--cslb-shadow);
}

.cslb-composition-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 12px;
  direction: ltr;
}

.cslb-product-card {
  --item-accent: var(--cslb-secondary);
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 40px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--item-accent) 22%, #dfe3dc);
  border-radius: 23px;
  background: linear-gradient(155deg, #fff, color-mix(in srgb, var(--item-accent) 10%, white));
  opacity: .10;
  filter: saturate(.1);
  transform: translateY(28px) scale(.91);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease, box-shadow .7s ease;
}

.cslb-product-card.is-featured {
  grid-row: span 2;
}

.cslb-product-card.is-added {
  opacity: 1;
  filter: none;
  transform: none;
  box-shadow: 0 14px 30px rgba(18,25,18,.09);
}

.cslb-product-card.is-current {
  z-index: 2;
}

.cslb-product-card.is-current::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 5;
  border-radius: inherit;
  padding: 3px;
  pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0 12%, var(--item-accent) 20%, white 31%, transparent 43% 60%, var(--cslb-primary) 73%, white 84%, transparent 96%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 9px color-mix(in srgb, var(--item-accent) 60%, transparent));
  animation: cslb-spin-border 2.35s linear infinite;
}

@keyframes cslb-spin-border {
  to { transform: rotate(1turn); }
}

.cslb-product-number {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cslb-ink);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(18,21,18,.22);
}

.cslb-product-image-wrap {
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 8px;
}

.cslb-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cslb-product-caption {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 9px;
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(17,19,16,.07);
  font-size: 10px;
  font-weight: 700;
}

.cslb-product-caption span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cslb-product-caption b {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cslb-secondary);
  color: #fff;
  opacity: 0;
  transform: scale(.5);
  transition: .35s ease .2s;
}

.cslb-product-card.is-added .cslb-product-caption b {
  opacity: 1;
  transform: scale(1);
}

.cslb-steps {
  direction: inherit;
}

.cslb-step {
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: 58px 0;
}

.cslb-step-card {
  --item-accent: var(--cslb-secondary);
  max-width: 590px;
  padding: clamp(23px, 4vw, 39px);
  border-radius: 30px;
  border: 1px solid rgba(17,19,16,.07);
  background: rgba(255,255,255,.84);
  box-shadow: var(--cslb-soft-shadow);
  backdrop-filter: blur(16px);
  opacity: .42;
  transform: translateY(25px) scale(.97);
  transition: .5s ease;
}

.cslb-step.is-active .cslb-step-card {
  opacity: 1;
  transform: none;
  border-color: color-mix(in srgb, var(--item-accent) 32%, transparent);
}

.cslb-step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 17px;
  background: var(--item-accent);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.cslb-step-kicker {
  margin-bottom: 7px;
  color: var(--cslb-muted);
  font-size: 13px;
  font-weight: 700;
}

.cslb-step h3 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.13;
  letter-spacing: -.035em;
}

.cslb-step p {
  margin: 17px 0 0;
  color: var(--cslb-muted);
  font-size: 17px;
  line-height: 1.75;
}

.cslb-benefit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  padding: 11px 14px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--item-accent) 10%, white);
  font-size: 14px;
  font-weight: 700;
}

.cslb-benefit b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff;
}

.cslb-summary {
  padding: 75px 0 95px;
}

.cslb-summary-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: clamp(30px, 5.5vw, 68px);
  border-radius: 40px;
  background: var(--cslb-ink);
  color: #fff;
}

.cslb-summary h2 {
  margin: 0;
  font-size: clamp(39px, 5.4vw, 70px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.cslb-summary p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.8;
}

.cslb-summary-list {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.cslb-summary-list div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 15px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.09);
}

.cslb-summary-list b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: var(--cslb-ink);
}

.cslb-summary-image {
  padding: 18px;
  border-radius: 31px;
  background: #fff;
  box-shadow: 0 28px 55px rgba(0,0,0,.28);
}

.cslb-summary-image img {
  width: 100%;
  max-height: 510px;
  object-fit: contain;
  border-radius: 20px;
}

.cslb-order {
  padding: 20px 0 115px;
}

.cslb-order-card {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  padding: clamp(25px, 5vw, 60px);
  border: 1px solid rgba(17,19,16,.07);
  border-radius: 39px;
  background: #fff;
  box-shadow: var(--cslb-shadow);
}

.cslb-order h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 5vw, 63px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.cslb-order-price {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 18px;
  color: var(--cslb-primary);
}

.cslb-order-price strong {
  font-size: 48px;
  line-height: 1;
}

.cslb-order-copy p {
  color: var(--cslb-muted);
  line-height: 1.8;
}

.cslb-form {
  position: relative;
  padding: 23px;
  border: 1px solid var(--cslb-line);
  border-radius: 27px;
  background: #f0f2ed;
}

.cslb-form label {
  display: block;
  margin-bottom: 13px;
}

.cslb-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
}

.cslb-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid #d8dcd5;
  border-radius: 15px;
  outline: 0;
  background: #fff;
  color: var(--cslb-ink);
}

.cslb-form input:focus {
  border-color: var(--cslb-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--cslb-primary) 12%, transparent);
}

.cslb-form button[type="submit"] {
  width: 100%;
  min-height: 59px;
  border: 0;
  border-radius: 17px;
  background: var(--cslb-primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 13px 27px color-mix(in srgb, var(--cslb-primary) 25%, transparent);
}

.cslb-form small {
  display: block;
  margin-top: 11px;
  color: var(--cslb-muted);
  text-align: center;
}

.cslb-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.cslb-form-status {
  display: none;
  margin-top: 13px;
  padding: 12px 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--cslb-primary) 10%, white);
  color: var(--cslb-primary);
  text-align: center;
  font-weight: 700;
}

.cslb-form-status.is-visible {
  display: block;
}

.cslb-thanks[hidden] {
  display: none !important;
}

.cslb-thanks {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 34px 0;
}

.cslb-thanks-card {
  width: min(760px, 100%);
  margin-inline: auto;
  padding: clamp(28px, 6vw, 64px);
  border-radius: 42px;
  background: #fff;
  box-shadow: var(--cslb-shadow);
  text-align: center;
}

.cslb-thanks-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: var(--cslb-secondary);
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  box-shadow: 0 22px 42px color-mix(in srgb, var(--cslb-secondary) 25%, transparent);
}

.cslb-thanks h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
}

.cslb-thanks > .cslb-container > .cslb-thanks-card > p {
  color: var(--cslb-muted);
  font-size: 18px;
  line-height: 1.8;
}

.cslb-thanks-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.cslb-thanks-summary div {
  padding: 16px 12px;
  border-radius: 18px;
  background: #f0f2ed;
  border: 1px solid var(--cslb-line);
}

.cslb-thanks-summary small,
.cslb-thanks-summary strong {
  display: block;
}

.cslb-thanks-steps {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 20px;
  border-radius: 22px;
  background: var(--cslb-ink);
  color: #fff;
  text-align: start;
}

.cslb-thanks-steps span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cslb-thanks-steps b {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--cslb-ink);
  background: #fff;
}

.cslb-thanks-image {
  max-width: 480px;
  margin: 22px auto 0;
  padding: 15px;
  border: 1px solid var(--cslb-line);
  border-radius: 24px;
  background: #fff;
}

.cslb-thanks-image img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.cslb-thanks-back {
  min-height: 52px;
  margin-top: 20px;
  padding: 0 20px;
  border: 1px solid var(--cslb-line);
  border-radius: 16px;
  background: #fff;
  color: var(--cslb-ink);
  font-weight: 700;
}

.cslb-landing.is-thankyou > section:not(.cslb-thanks),
.cslb-landing.is-thankyou > .cslb-mobile-order,
.cslb-landing.is-thankyou > .cslb-custom-slot:not(.cslb-after-thanks) {
  display: none !important;
}

.cslb-mobile-order {
  display: none;
  position: fixed;
  z-index: 9999;
  right: 12px;
  left: 12px;
  bottom: 12px;
  min-height: 56px;
  border: 0;
  border-radius: 17px;
  background: var(--cslb-primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 35px color-mix(in srgb, var(--cslb-primary) 32%, transparent);
}

.cslb-reveal {
  opacity: 0;
  transform: translateY(23px);
  transition: opacity .65s ease, transform .65s ease;
}

.cslb-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 930px) {
  .cslb-hero-grid,
  .cslb-summary-card,
  .cslb-order-card {
    grid-template-columns: 1fr;
  }

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

  .cslb-hero-product {
    min-height: 550px;
  }

  .cslb-scroll-story {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cslb-stage-wrap {
    z-index: 20;
    top: 0;
    height: 50svh;
    padding: 5px 8px 4px;
    background: var(--cslb-bg);
  }

  .cslb-stage {
    padding: 8px;
    border-radius: 24px;
  }

  .cslb-step {
    min-height: 50svh;
    height: 50svh;
    padding: 8px 8px 16px;
  }

  .cslb-step-card {
    width: 100%;
    max-width: none;
    height: calc(50svh - 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .cslb-summary-image {
    order: -1;
  }
}

@media (max-width: 620px) {
  .cslb-container {
    width: min(100% - 16px, 1160px);
  }

  .cslb-hero {
    min-height: 100svh;
    padding: 21px 0 34px;
  }

  .cslb-hero-grid {
    gap: 22px;
  }

  .cslb-hero h1 {
    font-size: clamp(45px, 14vw, 65px);
  }

  .cslb-hero-copy {
    font-size: 16px;
  }

  .cslb-primary-button,
  .cslb-secondary-button {
    flex: 1 1 100%;
  }

  .cslb-hero-product {
    min-height: 410px;
    border-radius: 30px;
  }

  .cslb-hero-product::before {
    width: 330px;
    height: 330px;
  }

  .cslb-price-badge {
    width: 92px;
    height: 92px;
    border-radius: 25px;
  }

  .cslb-composition-badge {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .cslb-story-intro {
    padding: 58px 0 18px;
  }

  .cslb-story-intro h2 {
    font-size: 35px;
  }

  .cslb-composition-grid {
    gap: 5px;
  }

  .cslb-product-card {
    grid-template-rows: minmax(0,1fr) 28px;
    border-radius: 13px;
  }

  .cslb-product-number {
    top: 6px;
    left: 6px;
    width: 29px;
    height: 29px;
    font-size: 15px;
  }

  .cslb-product-image-wrap {
    padding: 2px;
  }

  .cslb-product-caption {
    padding: 3px 5px;
    font-size: 7.7px;
  }

  .cslb-product-caption b {
    width: 13px;
    height: 13px;
    font-size: 8px;
  }

  .cslb-step-card {
    padding: 18px;
    border-radius: 23px;
  }

  .cslb-step-number {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    border-radius: 15px;
  }

  .cslb-step h3 {
    font-size: clamp(26px, 8.2vw, 34px);
  }

  .cslb-step p {
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.62;
  }

  .cslb-benefit {
    margin-top: 12px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .cslb-summary,
  .cslb-order {
    padding-top: 48px;
  }

  .cslb-summary-card,
  .cslb-order-card,
  .cslb-thanks-card {
    border-radius: 28px;
  }

  .cslb-thanks {
    padding: 12px 0;
  }

  .cslb-thanks-card {
    padding: 26px 17px;
  }

  .cslb-thanks-icon {
    width: 86px;
    height: 86px;
    border-radius: 27px;
    font-size: 44px;
  }

  .cslb-thanks-summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cslb-thanks-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cslb-mobile-order {
    display: block;
  }

  .cslb-landing.is-story-visible .cslb-mobile-order {
    opacity: 0;
    transform: translateY(130%);
    pointer-events: none;
  }
}

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

/* Composition density adapts to the number of elements. */
.cslb-count-1 .cslb-composition-grid {
  grid-template-columns: 1fr;
}

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

.cslb-count-7 .cslb-composition-grid,
.cslb-count-8 .cslb-composition-grid,
.cslb-count-9 .cslb-composition-grid,
.cslb-count-10 .cslb-composition-grid,
.cslb-count-11 .cslb-composition-grid,
.cslb-count-12 .cslb-composition-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 620px) {
  .cslb-count-7 .cslb-composition-grid,
  .cslb-count-8 .cslb-composition-grid,
  .cslb-count-9 .cslb-composition-grid,
  .cslb-count-10 .cslb-composition-grid,
  .cslb-count-11 .cslb-composition-grid,
  .cslb-count-12 .cslb-composition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
