/* ============================================================================
   Bloomie — client build
   Tokens del cliente (overrides) + estilos por sección.
   Consume el design system (ds.css): tokens --color-*, .btn, .glass.
   Las medidas/fonts de cada sección se ajustan al bajarlas del Figma.
   ============================================================================ */

@font-face {
  font-family: "PP Neue Montreal";
  src:
    url("Assets/Font/PPNeueMontreal-Variable.ttf") format("truetype-variations"),
    url("Assets/Font/PPNeueMontreal-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Tipografía Bloomie (PP Neue Montreal; pesos 530/450) */
  --font-heading: "PP Neue Montreal", system-ui, -apple-system, sans-serif;
  --font-body:    "PP Neue Montreal", system-ui, -apple-system, sans-serif;
  --fw-medium: 530;
  --fw-regular: 450;

  /* Escala tipográfica Bloomie (de Figma; se completa al usar cada estilo) */
  --display-fs: 48px;  --display-lh: 55.68px;
  --h6-fs: 18px;       --h6-lh: 23.76px;
  --body-s-fs: 14px;   --body-s-lh: 20px; --body-s-ls: 0.2px;
  --body-m-fs: 17.2px;  --body-m-lh: 25.11px; --body-m-ls: 0.2px;
  --subtitle-fs: 21px;   --subtitle-lh: 29.4px;  --subtitle-ls: 0.1px;
  --subtitle-2-fs: 19px; --subtitle-2-lh: 26.6px; --subtitle-2-ls: 0.1px;
  --stat-fs: 80px;       --stat-lh: 85.6px;
  --h2-fs: 48px;         --h2-lh: 55.68px;
  --h4-fs: 30px;         --h4-lh: 39.6px;
  --h5-fs: 22px;         --h5-lh: 27.72px;
  --h3-fs: 24px;         --h3-lh: 27.6px;
  --fw-book: 375;
  --space-14: 60px;
  --space-16: 100px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body {
  --font-axis-wght: var(--fw-regular);
  margin: 0;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-variation-settings: "wght" var(--font-axis-wght);
  font-synthesis: none;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { -webkit-appearance: none; appearance: none; }
a { color: inherit; text-decoration: none; }
:where(
  .floating-nav__button,
  .hero__caption,
  .hero__title,
  .hero__title span,
  .hero__subtitle,
  .hero__kickstarter-link,
  .hero__kickstarter-cta,
  .hero__email-submit,
  .hero-app__eyebrow,
  .hero-app__title,
  .hero-app__subtitle,
  .endorsement__lead strong,
  .endorsement__num,
  .endorsement__label,
  .hero--problem .hero__title,
  .how-it-works__title,
  .how-it-works__copy p,
  .carousel__title,
  .carousel__card-title,
  .colorpicker__text,
  .early-access__title,
  .early-access__submit,
  .kickstarter__title,
  .kickstarter__button,
  .kickstarter-strip__title,
  .kickstarter-strip__button,
  .faqs__title,
  .faq__q,
  .footer__email,
  .footer__brand
) {
  --font-axis-wght: var(--fw-medium);
  font-variation-settings: "wght" var(--font-axis-wght);
}
:where(
  .hero__email-form,
  .carousel__card-body,
  .early-access__subtitle,
  .kickstarter__copy,
  .faq__a,
  .footer__label,
  .footer__product
) {
  --font-axis-wght: var(--fw-regular);
  font-variation-settings: "wght" var(--font-axis-wght);
}
:where(.endorsement__lead) {
  --font-axis-wght: var(--fw-book);
  font-variation-settings: "wght" var(--font-axis-wght);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* contenedor base (se afina por sección) */
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: 24px; }

/* ===== floating nav ===== */
.floating-nav {
  position: fixed;
  z-index: 50;
  top: 32px;
  left: 50%;
  width: min(calc(100% - 32px), 375px);
  height: 60px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  background: rgb(255 255 255 / 16%);
  box-shadow: 0 8px 40px rgb(0 0 0 / 12%), inset 0 0 20px rgb(255 255 255 / 30%);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -18px, 0) scale(0.98);
  transition: opacity 420ms cubic-bezier(.22, 1, .36, 1), transform 420ms cubic-bezier(.22, 1, .36, 1);
}
.floating-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
}
.floating-nav__inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 6px 6px 24px;
}
.floating-nav__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(255 255 255 / 16%);
}
.floating-nav__logo {
  display: flex;
  min-width: 0;
  align-items: center;
}
.floating-nav__logo img {
  width: 106.6px;
  height: auto;
}
.floating-nav__button {
  display: flex;
  flex: 0 0 auto;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 2px 24px 0;
  font-size: var(--body-m-fs);
  font-weight: var(--fw-medium);
  line-height: var(--body-m-lh);
  letter-spacing: var(--body-m-ls);
  text-align: center;
  white-space: nowrap;
  box-shadow: inset 0 0 18px rgb(255 255 255 / 14%);
  transition: transform 180ms ease, background 180ms ease;
}
.floating-nav__button:hover {
  transform: scale(1.015);
}

/* ===== 1 · hero principal (video hero) ===== */
.hero--principal {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  height: 100svh;
  min-height: 640px;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
  gap: 24px;
}
.hero__media { position: absolute; inset: 0; z-index: -1; background: var(--color-neutral-300); }
.hero__media-img,
.hero__media-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: rgb(0 0 0 / 4%); }
.hero__content {
  width: min(100%, 980px); max-width: 980px; padding-left: 100px; padding-right: 24px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left;
}
.hero__caption {
  margin: 0; font-weight: var(--fw-medium);
  font-size: var(--h6-fs); line-height: var(--h6-lh);
  color: rgb(255 255 255 / 80%);
}
.hero__title {
  margin: 0; font-family: var(--font-heading); font-weight: var(--fw-medium);
  width: min(100%, 808px);
  font-size: 64px; line-height: 64px;
  color: var(--color-text-inverted);
}
.hero__bottom {
  position: relative; z-index: 1;
  display: flex;
  width: min(100%, 980px);
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 0 100px;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 -1.27px 76.19px 0 rgb(255 255 255 / 50%), inset 0 -1.27px 141.206px 0 rgb(255 255 255 / 70%);
}
.hero__email-button {
  display: none;
}
.hero__email-form {
  display: flex;
  width: 370px;
  height: 60px;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 24px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 16%) 0%, rgb(255 255 255 / 16%) 100%),
    linear-gradient(90deg, rgb(255 255 255 / 25%) 0%, rgb(255 255 255 / 25%) 100%);
  color: #fff;
  font-size: var(--body-m-fs);
  line-height: var(--body-m-lh);
  letter-spacing: var(--body-m-ls);
  font-weight: var(--fw-regular);
  backdrop-filter: blur(38px);
  -webkit-backdrop-filter: blur(38px);
  transition: background 180ms ease, color 180ms ease;
  -webkit-tap-highlight-color: transparent;
}
.hero__email-form:hover,
.hero__email-form:focus-within {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 22%) 0%, rgb(255 255 255 / 22%) 100%),
    linear-gradient(90deg, rgb(255 255 255 / 31%) 0%, rgb(255 255 255 / 31%) 100%);
  color: #fff;
}
.hero__email-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  appearance: none;
  caret-color: currentColor;
  -webkit-tap-highlight-color: transparent;
}
.hero__email-input::placeholder {
  color: currentColor;
  opacity: 1;
}
.hero__email-input::selection {
  background: transparent;
  color: currentColor;
}
.hero__email-input::-moz-selection {
  background: transparent;
  color: currentColor;
}
.hero__email-input:-webkit-autofill,
.hero__email-input:-webkit-autofill:hover,
.hero__email-input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px transparent inset;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: currentColor;
  transition: background-color 9999s ease-in-out 0s;
}
.hero__email-submit {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #fff;
  color: #0d0d0d;
  cursor: pointer;
  font: inherit;
  line-height: 1;
}
.hero__email-submit:focus,
.hero__email-submit:focus-visible,
.hero__email-input:focus,
.hero__email-input:focus-visible {
  outline: 0;
  box-shadow: none;
}
.hero__email-submit:disabled {
  cursor: default;
}
.hero__email-submit-label,
.hero__email-icon {
  display: block;
  width: 18px;
  height: 18px;
}
.hero__email-icon--check {
  display: none;
}
.hero__email-form.is-submitted {
  width: 300px;
  justify-content: center;
  gap: 12px;
  padding: 0 14px 0 24px;
  background: #fff;
  color: #0d0d0d;
}
.hero__email-form.is-submitted .hero__email-input {
  flex: 0 1 auto;
  width: 200px;
  color: #0d0d0d;
  text-align: center;
}
.hero__email-form.is-submitted .hero__email-input::placeholder {
  color: #0d0d0d;
}
.hero__email-form.is-submitted .hero__email-submit {
  background: #fff;
  color: #0d0d0d;
}
.hero__email-form.is-submitted .hero__email-icon--arrow {
  display: none;
}
.hero__email-form.is-submitted .hero__email-icon--check {
  display: block;
}
.hero__kickstarter-link {
  --font-axis-wght: var(--fw-medium);
  display: inline-flex;
  width: fit-content;
  max-width: none;
  flex: 0 0 auto;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px;
  border-radius: 999px;
  background: #fff;
  color: #0d0d0d;
  font-weight: var(--fw-medium);
  font-variation-settings: "wght" var(--font-axis-wght);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 8px 40px rgb(0 0 0 / 10%);
}
.hero__kickstarter-text {
  --font-axis-wght: var(--fw-medium);
  flex: 0 0 auto;
  padding-left: 18px;
  font-weight: var(--fw-medium);
  font-variation-settings: "wght" var(--font-axis-wght);
  white-space: nowrap;
}
.hero__kickstarter-cta {
  --font-axis-wght: var(--fw-medium);
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: #5ecb80;
  color: #fff;
  font-weight: var(--fw-medium);
  font-variation-settings: "wght" var(--font-axis-wght);
}
.brevo-submit-frame,
.input--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
/* ===== 2 · endorsement ===== */
.endorsement {
  background-color: var(--color-bg-primary);
  display: flex; flex-direction: column; align-items: center; gap: 40px;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.endorsement__lead {
  width: min(100% - 48px, 650px); margin: 0;
  font-size: var(--subtitle-2-fs); line-height: var(--subtitle-2-lh); letter-spacing: var(--subtitle-2-ls);
  font-weight: var(--fw-book);
  color: var(--color-text-primary);
}
.endorsement__lead strong {
  font-weight: var(--fw-medium);
}
.endorsement__ticker {
  position: relative;
  width: min(100%, 1500px);
  overflow: hidden;
  padding-inline: 16px;
}
.endorsement__ticker::before,
.endorsement__ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  width: min(250px, 18vw);
  height: 160px;
  pointer-events: none;
}
.endorsement__ticker::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgb(255 255 255 / 0%) 100%);
}
.endorsement__ticker::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgb(255 255 255 / 0%) 100%);
}
.endorsement__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.endorsement__group {
  display: flex;
  align-items: center;
  gap: 64px;
  flex: 0 0 auto;
  padding-right: 64px;
}
.endorsement__module {
  flex: 0 0 auto;
  width: 264px; height: 160px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.endorsement__num {
  font-family: var(--font-heading); font-weight: var(--fw-medium);
  font-size: var(--stat-fs); line-height: var(--stat-lh);
  color: var(--color-text-primary);
}
.endorsement__label {
  font-size: var(--body-s-fs); line-height: var(--body-s-lh); letter-spacing: var(--body-s-ls);
  font-weight: var(--fw-medium); color: var(--color-text-primary);
  white-space: nowrap;
}
.endorsement__label--metric {
  font-size: var(--body-m-fs);
  line-height: var(--body-m-lh);
  letter-spacing: var(--body-m-ls);
}
.endorsement__logo {
  height: 90px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.endorsement__logo img {
  width: auto;
  max-width: 150px;
  max-height: 76px;
  object-fit: contain;
}
/* ===== 3 · hero the problem (video) ===== */
.hero--problem {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  min-height: 100vh; padding: 100px 24px; overflow: hidden; isolation: isolate;
}
.hero--problem .hero__media { background: var(--color-neutral-1000); }
.hero--problem .hero__overlay {
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0%) 40%, rgb(0 0 0 / 38%) 100%),
    rgb(0 0 0 / 5%);
}
.hero--problem .hero__content {
  width: min(100%, 840px);
  max-width: 840px;
  padding: 0;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.hero--problem .hero__title {
  width: 100%;
  font-size: var(--stat-fs);
  line-height: var(--stat-lh);
}
.hero__head { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hero__subtitle {
  margin: 0; max-width: 850px; font-weight: var(--fw-medium);
  font-size: var(--subtitle-fs); line-height: var(--subtitle-lh); letter-spacing: var(--subtitle-ls);
  color: rgb(255 255 255 / 80%);
}
/* ===== 4 · how it works ===== */
.how-it-works {
  position: relative;
  height: 400svh;
  background-color: var(--color-bg-primary);
}
.how-it-works__sticky {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 128px 100px 36px 128px;
}
.how-it-works__content {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.how-it-works__title {
  flex: 0 0 auto;
  margin: 0 4px 32px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: var(--h2-fs);
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: var(--h2-lh);
  text-align: center;
  white-space: nowrap;
}
.how-it-works__media-wrap {
  display: flex;
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.how-it-works__media {
  position: relative;
  width: 100%;
  max-width: 1666px;
  height: min(700px, 100%);
  max-height: 700px;
  aspect-ratio: 1666 / 796;
  overflow: hidden;
  border-radius: 24px;
  background: #d8dbe1;
}
.how-it-works__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: blur(18px);
  transform: scale(1.012);
  transition:
    opacity 520ms cubic-bezier(.22, 1, .36, 1),
    filter 520ms cubic-bezier(.22, 1, .36, 1),
    transform 520ms cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.how-it-works__panel.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
.how-it-works__panel img,
.how-it-works__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-it-works__video--mobile {
  display: none;
}
.how-it-works__indicator {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.how-it-works__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(13 13 13 / 18%);
  transition: background 220ms ease, transform 220ms ease;
}
.how-it-works__dot.is-active {
  background: var(--color-text-primary);
  transform: scale(1.05);
}
.how-it-works__copy {
  position: relative;
  display: grid;
  width: min(100%, 1200px);
  min-height: 88px;
  margin-top: 40px;
  place-items: start center;
  text-align: center;
}
.how-it-works__copy p {
  grid-area: 1 / 1;
  width: 100%;
  margin: 0;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: 43.79px;
  opacity: 0;
  filter: blur(16px);
  transform: translateY(8px);
  transition:
    opacity 520ms cubic-bezier(.22, 1, .36, 1),
    filter 520ms cubic-bezier(.22, 1, .36, 1),
    transform 520ms cubic-bezier(.22, 1, .36, 1);
}
.how-it-works__copy p.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.how-it-works--reduced-motion .how-it-works__panel,
.how-it-works--reduced-motion .how-it-works__copy p {
  transition: none;
}
/* ===== 5 · hero app ===== */
.hero-app {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100svh;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
  background: var(--color-bg-primary);
  isolation: isolate;
}
.hero-app__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-app__media picture,
.hero-app__media img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-app__media img {
  object-fit: cover;
}
.hero-app__content {
  display: flex;
  width: min(800px, calc(100% - 48px));
  max-width: 980px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-text-primary);
  text-align: center;
}
.hero-app__eyebrow {
  margin: 0 0 -10px;
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
  font-size: var(--h6-fs);
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: var(--h6-lh);
}
.hero-app__title {
  margin: 0;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: var(--stat-fs);
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: var(--stat-lh);
}
.hero-app__subtitle {
  width: min(100%, 850px);
  margin: -2px 0 0;
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
  font-size: var(--subtitle-fs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--subtitle-ls);
  line-height: var(--subtitle-lh);
}
/* ===== 5 · carrusel horizontal ===== */
.carousel--horizontal { --edge: max(88px, calc((100% - 1440px) / 2)); background-color: var(--color-bg-primary); padding: 100px 0 60px; overflow: hidden; }
.carousel--horizontal__inner { width: 100%; }
.carousel__title { margin: 0 var(--edge) 60px; font-weight: var(--fw-medium); font-size: var(--h2-fs); line-height: var(--h2-lh); color: var(--color-text-primary); }
.carousel__track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; padding: 0 var(--edge) 4px; scroll-padding-inline: var(--edge);
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__card { flex: 0 0 620px; max-width: 85vw; scroll-snap-align: start; }
.carousel__card-media { aspect-ratio: 620 / 680; border-radius: 24px; overflow: hidden; background: var(--color-neutral-200); }
.carousel__card-media picture,
.carousel__card-media img,
.carousel__card-media video { display: block; width: 100%; height: 100%; object-fit: cover; }
.carousel__card-text { display: flex; flex-direction: column; gap: 16px; padding: 32px 24px 0 16px; max-width: 420px; }
.carousel__card-title { margin: 0; font-weight: var(--fw-medium); font-size: var(--h5-fs); line-height: var(--h5-lh); color: var(--color-text-primary); }
.carousel__card-body { margin: 0; font-weight: var(--fw-regular); font-size: var(--body-m-fs); line-height: var(--body-m-lh); letter-spacing: var(--body-m-ls); color: var(--color-text-secondary); }
.carousel__nav { display: flex; gap: 16px; justify-content: flex-end; padding: 40px var(--edge); }
.carousel__arrow {
  width: 36px; height: 36px; border: 0; border-radius: 999px; background: #E8E8E8; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--color-text-primary);
  transition: opacity 150ms ease;
}
.carousel__arrow:disabled { opacity: .35; cursor: default; }
.carousel__arrow svg { width: 24px; height: 24px; }
/* ===== 6 · hero colors (+ colorPicker) ===== */
.hero--colors {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  min-height: 100vh; padding: 100px 24px; overflow: hidden; isolation: isolate;
}
.hero--colors .hero__media { background: var(--color-neutral-400); }
.hero--colors .hero__media-img { transition: opacity 480ms ease, filter 480ms ease; }
.hero--colors .hero__overlay { display: none; }
.hero--colors .hero__content {
  width: min(100%, 840px);
  max-width: 840px;
  padding: 0;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.hero--colors .hero__caption,
.hero--colors .hero__subtitle {
  color: var(--color-text-secondary);
}
.hero--colors .hero__title {
  width: 100%;
  font-size: var(--stat-fs);
  line-height: var(--stat-lh);
  color: var(--color-text-primary);
}
.hero__title--split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  white-space: nowrap;
  transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}
.hero__title-variable {
  display: inline-block;
  min-width: 0;
  white-space: nowrap;
  transition: opacity 260ms ease, transform 360ms cubic-bezier(.2, .8, .2, 1);
  will-change: opacity, transform;
}
.hero__title-variable.is-changing {
  opacity: 0;
  transform: translateY(14px);
}

.colorpicker {
  position: absolute; left: 0; right: 0; bottom: 100px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.colorpicker__pill {
  display: flex; align-items: center; height: 60px; padding-inline: 16px; border-radius: 999px;
  background: rgb(255 255 255 / 16%);
  backdrop-filter: blur(50px); -webkit-backdrop-filter: blur(50px);
}
.colorpicker__dot {
  appearance: none; border: 0; background: none; cursor: pointer; padding: 0;
  width: 40px; height: 40px; position: relative; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.colorpicker__dot::before { content: ""; width: 28px; height: 28px; border-radius: 50%; background: var(--dot); }
.colorpicker__dot::after {
  content: ""; position: absolute; inset: 2px; border-radius: 50%;
  border: 2px solid #fff; opacity: 0; transition: opacity 150ms ease-in;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 12%);
}
.colorpicker__dot[aria-pressed="true"]::after { opacity: 1; }
.colorpicker__text {
  display: flex; align-items: center; gap: 6px; padding-inline: 12px;
  font-size: var(--h6-fs); line-height: var(--h6-lh); font-weight: var(--fw-medium);
}
.colorpicker__fixed { color: rgb(255 255 255 / 80%); }
.colorpicker__sep { width: 4px; height: 4px; border-radius: 50%; background: rgb(255 255 255 / 80%); }
.colorpicker__var { color: #fff; }
/* ===== 7 · hero cta ===== */
.early-access {
  background-color: var(--color-bg-primary);
  display: flex;
  justify-content: center;
  padding: 128px 60px;
}
.early-access__panel {
  display: flex;
  width: 100%;
  max-width: 1260px;
  min-height: 480px;
  overflow: hidden;
  border-radius: 24px;
  background: #f9f9f9;
}
.early-access__content {
  display: flex;
  min-width: 0;
  flex: 1 1 46.8%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 60px;
}
.early-access__title {
  margin: 0 0 10px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: var(--fw-medium);
  line-height: 44px;
}
.early-access__subtitle {
  margin: 0 0 36px;
  color: rgb(13 13 13 / 70%);
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: 22px;
}
.early-access__form {
  display: flex;
  width: min(100%, 448px);
  height: 60px;
  align-items: center;
  border-radius: 999px;
  background: #e5e5e5;
  padding: 6px;
  transition: background 180ms ease, opacity 180ms ease;
}
.early-access__form:hover,
.early-access__form:focus-within {
  background: #dedede;
}
.early-access__input {
  min-width: 0;
  flex: 1 1 auto;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 20px;
  color: var(--color-text-primary);
  font: inherit;
  font-size: 14px;
  line-height: 20px;
}
.early-access__input::placeholder {
  color: rgb(13 13 13 / 75%);
  opacity: 1;
}
.early-access__input::selection {
  background: transparent;
  color: var(--color-text-primary);
}
.early-access__input::-moz-selection {
  background: transparent;
  color: var(--color-text-primary);
}
.early-access__input:-webkit-autofill,
.early-access__input:-webkit-autofill:hover,
.early-access__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text-primary);
  box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 9999s ease-out;
}
.early-access__submit {
  position: relative;
  flex: 0 0 auto;
  height: 48px;
  width: auto;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-medium);
  line-height: 18px;
  padding: 0 28px;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}
.early-access__submit:focus,
.early-access__submit:focus-visible,
.early-access__input:focus,
.early-access__input:focus-visible {
  outline: none;
}
.early-access__submit:disabled {
  cursor: default;
}
.early-access__submit-success {
  display: none;
}
.early-access__form.is-submitted {
  background: #fff;
}
.early-access__form.is-submitted .early-access__input {
  color: var(--color-text-primary);
}
.early-access__form.is-submitted .early-access__input::placeholder {
  color: var(--color-text-primary);
}
.early-access__form.is-submitted .early-access__submit {
  min-width: 62px;
}
.early-access__form.is-submitted .early-access__submit-default {
  display: none;
}
.early-access__form.is-submitted .early-access__submit-success {
  display: inline;
}
.early-access__image {
  position: relative;
  min-width: 0;
  flex: 1 1 53.2%;
  aspect-ratio: 670 / 480;
}
.early-access__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.early-access__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== 8 · kickstarter ===== */
.kickstarter {
  display: flex;
  justify-content: center;
  padding: var(--space-16) var(--space-14) var(--space-14);
  background: var(--color-bg-primary);
}
.kickstarter__card {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1260px;
  max-height: 480px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgb(94 203 128 / 25%) 0%, rgb(94 203 128 / 25%) 100%),
    #fff;
}
.kickstarter__media {
  position: relative;
  flex: 1 0 0;
  min-width: 0;
  aspect-ratio: 670 / 480;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
}
.kickstarter__media picture,
.kickstarter__media img {
  width: 100%;
  height: 100%;
}
.kickstarter__media img {
  object-fit: cover;
}
.kickstarter__badge {
  position: absolute;
  top: -52.3px;
  right: -49.943px;
  display: flex;
  width: 145.943px;
  height: 145.943px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.kickstarter__badge img {
  width: 113.866px;
  height: 113.866px;
  object-fit: contain;
  transform: rotate(-20deg);
}
.kickstarter__content {
  display: flex;
  min-width: 0;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 60px;
}
.kickstarter__title {
  width: 100%;
  max-width: 100%;
  margin: 0 0 24px;
  color: var(--color-text-primary);
  font-size: 38px;
  font-weight: var(--fw-medium);
  line-height: 43.79px;
  letter-spacing: 0;
  white-space: nowrap;
}
.kickstarter__copy {
  max-width: 520px;
  margin: 0 0 32px;
  color: var(--color-text-secondary);
  font-size: var(--body-m-fs);
  font-weight: var(--fw-regular);
  line-height: var(--body-m-lh);
  letter-spacing: var(--body-m-ls);
}
.kickstarter__button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: var(--body-m-fs);
  font-weight: var(--fw-medium);
  line-height: var(--body-m-lh);
  letter-spacing: var(--body-m-ls);
  padding: 0 24px;
}
.kickstarter-strip {
  display: none;
}
/* ===== 8 · faqs ===== */
.faqs { background-color: var(--color-bg-primary); padding: 100px 24px 60px; display: flex; justify-content: center; }
.faqs__grid { width: 100%; max-width: 1260px; display: grid; grid-template-columns: 0.75fr 1fr; gap: 32px; align-items: start; }
.faqs__title { margin: 0; font-weight: var(--fw-medium); font-size: var(--h2-fs); line-height: var(--h2-lh); color: var(--color-text-primary); }
.faqs__list { display: flex; flex-direction: column; }
.faq { border-bottom: 1px solid rgb(13 13 13 / 15%); }
.faq:last-child { border-bottom: 0; }
.faq__q {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px; justify-content: space-between;
  padding: 16px 0; font-weight: var(--fw-medium);
  font-size: var(--body-m-fs); line-height: var(--body-m-lh); letter-spacing: var(--body-m-ls);
  color: var(--color-text-primary);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 16px; height: 16px; flex: none; color: var(--color-text-primary); }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: currentColor; border-radius: 1px;
}
.faq__icon::before { width: 11px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 11px; transition: opacity 150ms ease; }
.faq[open] .faq__icon::after { opacity: 0; }
.faq__a {
  margin: 0 0 24px; max-width: 62ch; font-weight: var(--fw-regular);
  font-size: var(--body-m-fs); line-height: var(--body-m-lh); letter-spacing: var(--body-m-ls);
  color: var(--color-text-secondary);
}
/* ===== 9 · footer ===== */
.footer {
  background-color: var(--color-bg-primary);
}
.footer__content {
  display: flex;
  width: 100%;
  height: 200px;
  align-items: center;
  justify-content: center;
  padding: 48px 128px;
  opacity: 0.5;
}
.footer__inner {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgb(0 0 0 / 30%);
  padding-top: 60px;
}
.footer__contact {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.footer__label {
  margin: 0;
  color: var(--color-text-primary);
  font-size: var(--body-m-fs);
  font-weight: var(--fw-regular);
  letter-spacing: var(--body-m-ls);
  line-height: var(--body-m-lh);
}
.footer__email {
  margin: 0;
  color: var(--color-text-primary);
  font-size: var(--h5-fs);
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: var(--h5-lh);
}
.footer__lockup {
  display: flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 7px;
  color: #000;
  line-height: 1;
  white-space: nowrap;
}
.footer__brand {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: var(--fw-medium);
  letter-spacing: 0;
}
.footer__product {
  font-size: 16px;
  font-weight: var(--fw-regular);
  letter-spacing: 0;
}

/* ============================================================================
   RESPONSIVE — breakpoints Bloomie: mobile 0–699 · tablet 700–1199 ·
   laptop 1200–1919 · desktop 1920+. Base (arriba) = laptop/desktop (≥1200).
   Hero: valores EXACTOS de Figma. Resto: baseline (apila/escala) hasta tener
   los diseños tablet/mobile de cada sección.
   ============================================================================ */

/* ---------- TABLET (≤1199) ---------- */
@media (max-width: 1199px) {
  :root {
    --stat-fs: 53.5px;  --stat-lh: 58.85px;   /* títulos display grandes */
    --display-fs: 38px; --display-lh: 43.57px; /* título hero principal (largo) */
    --h6-fs: 16.74px;   --h6-lh: 21.39px;
    /* h2 NO shrinkea en tablet → queda 48 (base) */
  }
  .hero--principal { height: 100svh; min-height: 640px; padding: 80px 0; }
  .hero--problem, .hero--colors { padding: 80px 24px; }
  .hero__content { max-width: 760px; padding-left: 48px; }
  .hero--principal .hero__title {
    font-size: var(--display-fs);
    line-height: var(--display-lh);
    font-weight: var(--fw-medium);
  }
  .hero__bottom { width: min(100%, 760px); justify-content: flex-start; padding-left: 48px; padding-right: 48px; }
  .colorpicker { bottom: 80px; }

  .endorsement { gap: 32px; padding: 80px 0; }
  .endorsement__group { gap: 48px; padding-right: 48px; }
  .endorsement__ticker::before,
  .endorsement__ticker::after { width: 120px; }
  .carousel--horizontal { --edge: max(14px, calc((100% - 676px) / 2)); padding: 60px 0; }
  .carousel__title { margin-bottom: 60px; }
  .carousel__card { flex-basis: 600px; max-width: calc(100vw - 28px); }
  .carousel__card-media { aspect-ratio: 600 / 790.645; }
  .carousel__card-title { font-size: 20.74px; line-height: 25.37px; }
  .carousel__nav { padding-right: calc(var(--edge) + 80px); }
  .how-it-works__sticky {
    min-height: 0;
    padding: 128px 0 80px;
  }
  .how-it-works__content {
    max-width: 1050px;
    padding-inline: 32px;
  }
  .how-it-works__title {
    margin-bottom: 32px;
    font-size: var(--display-fs);
    line-height: var(--display-lh);
  }
  .how-it-works__media-wrap {
    gap: 12px;
  }
  .how-it-works__media {
    aspect-ratio: 870 / 920;
    border-radius: 24px;
    height: auto;
    max-height: 100%;
  }
  .how-it-works__copy {
    width: 100%;
    margin-top: 32px;
    padding-left: 12px;
    padding-right: 16px;
  }
  .how-it-works__copy p {
    font-size: 38px;
    line-height: 43.57px;
  }
  .hero-app {
    min-height: 100svh;
    padding: 80px 0;
  }
  .hero-app__content {
    width: min(600px, calc(100% - 64px));
    gap: 12px;
  }
  .hero-app__eyebrow {
    margin-bottom: -10px;
  }
  .hero-app__title {
    font-size: var(--stat-fs);
    line-height: var(--stat-lh);
  }
  .hero-app__subtitle {
    width: 100%;
  }
  .early-access { padding: 128px 48px; }
  .early-access__panel { flex-direction: column; max-width: 1260px; min-height: 0; }
  .early-access__image { order: 1; width: 100%; flex: 0 0 auto; aspect-ratio: 670 / 480; }
  .early-access__content { order: 2; width: 100%; min-height: 410px; flex: 0 0 auto; padding: 72px 100px; }
  .early-access__title { font-size: 36px; line-height: 40px; }
  .early-access__subtitle { margin-bottom: 44px; font-size: 17px; line-height: 25px; }
  .early-access__form { flex-direction: column; width: min(100%, 520px); height: auto; gap: 16px; padding: 0; background: transparent; border-radius: 0; }
  .early-access__form:hover,
  .early-access__form:focus-within { background: transparent; }
  .early-access__input { width: 100%; height: 68px; flex: none; border-radius: 999px; background: #dedede; padding: 0 32px; font-size: 18px; line-height: 26px; }
  .early-access__submit { width: 100%; height: 68px; min-width: 0; font-size: 18px; line-height: 26px; }
  .kickstarter {
    padding: var(--space-16) 48px var(--space-14);
  }
  .kickstarter__card {
    flex-direction: column;
    max-height: none;
    overflow: hidden;
  }
  .kickstarter__media {
    width: 100%;
    flex: 0 0 auto;
    aspect-ratio: 670 / 480;
    border-radius: 0;
  }
  .kickstarter__badge {
    top: 0;
    right: 24px;
  }
  .kickstarter__content {
    width: 100%;
    min-height: 344px;
    flex: 0 0 auto;
    padding: 72px 60px;
  }
  .kickstarter__title {
    margin-bottom: 24px;
    font-size: 29.17px;
    line-height: 33.57px;
  }
  .kickstarter__copy {
    margin-bottom: 32px;
  }
  .kickstarter-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 60px 20px;
    background: #5ecb80;
    color: #fff;
    text-align: center;
  }
  .kickstarter-strip__title {
    margin: 0;
    font-size: 26.21px;
    font-weight: var(--fw-medium);
    line-height: 34.6px;
  }
  .kickstarter-strip__button {
    display: inline-flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: #0d0d0d;
    font-size: 16.74px;
    font-weight: var(--fw-medium);
    line-height: 21.39px;
    padding: 0 24px;
  }
  .faqs { padding: 80px 24px; }
  .faqs__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__content { height: 200px; padding: 48px 60px; }
  .footer__inner { gap: 32px; padding-top: 48px; }
  .footer__brand,
  .footer__product { font-size: 15px; }
}

/* ---------- MOBILE (≤699) ---------- */
@media (max-width: 699px) {
  :root {
    --stat-fs: 38px;    --stat-lh: 41.8px;
    --display-fs: 38px; --display-lh: 41.8px;
    --h6-fs: 16px;      --h6-lh: 20px;
    --h2-fs: 32px;      --h2-lh: 36.48px;
  }
  .hero--principal { height: 100svh; min-height: 620px; padding: 72px 20px; }
  .hero--principal { justify-content: flex-start; padding-top: 60px; padding-bottom: 72px; }
  .hero--problem, .hero--colors { padding: 80px 20px; }
  .hero__content { max-width: 350px; gap: 14px; padding-left: 0; padding-right: 0; }
  .hero--principal .hero__content {
    max-width: 332px;
    align-items: center;
    text-align: center;
  }
  .hero--principal .hero__caption { font-size: 14px; line-height: 19px; }
  .hero--principal .hero__title {
    width: 100%;
    font-size: var(--h2-fs);
    font-weight: var(--fw-medium);
    line-height: var(--h2-lh);
  }
  .hero--principal .hero__bottom {
    width: min(100%, 332px);
    align-self: center;
    margin-top: auto;
  }
  .hero--problem .hero__title {
    font-size: var(--display-fs);
    font-weight: var(--fw-medium);
    line-height: var(--display-lh);
  }
  .hero--problem .hero__subtitle {
    font-size: var(--h6-fs);
    font-weight: var(--fw-medium);
    line-height: var(--h6-lh);
    letter-spacing: 0;
  }
  .hero__title--split { flex-wrap: wrap; gap: 8px; white-space: normal; }
  .hero__head { gap: 6px; }
  .hero__bottom { justify-content: flex-start; padding-left: 0; padding-right: 0; }
  .hero__email-form { width: min(100%, 370px); font-size: 14px; }
  .colorpicker { bottom: 48px; }
  .floating-nav { top: 16px; width: min(calc(100% - 24px), 360px); height: 56px; }
  .floating-nav__inner { gap: 10px; padding: 5px 5px 5px 18px; }
  .floating-nav__logo img { width: 96px; }
  .floating-nav__button { min-height: 46px; padding-inline: 18px; font-size: 15px; line-height: 21px; }

  .endorsement { gap: 28px; padding: 64px 0; }
  .endorsement__lead { width: min(100% - 40px, 350px); font-size: 16px; line-height: 22px; }
  .endorsement__ticker { padding-inline: 0; }
  .endorsement__ticker::before,
  .endorsement__ticker::after { width: 64px; height: 140px; }
  .endorsement__group { gap: 28px; padding-right: 28px; }
  .endorsement__module { width: 220px; height: 140px; }
  .endorsement__num { font-size: 54px; line-height: 58px; }
  .endorsement__label { font-size: var(--body-s-fs); line-height: var(--body-s-lh); }
  .endorsement__label--metric { font-size: var(--body-m-fs); line-height: var(--body-m-lh); }
  .endorsement__logo { width: 132px; height: 76px; }
  .endorsement__logo img { max-width: 132px; max-height: 64px; }

  .carousel--horizontal { --edge: max(18px, calc((100% - 354px) / 2)); padding: 60px 0 48px; }
  .carousel__title { margin-bottom: 40px; font-size: var(--h2-fs); line-height: var(--h2-lh); }
  .carousel__track { gap: 20px; padding-bottom: 0; }
  .carousel__card { flex-basis: 344px; max-width: calc(100vw - 36px); }
  .carousel__card-media { aspect-ratio: 344 / 453.303; border-radius: 12px; }
  .carousel__card-text { gap: 16px; padding: 32px 24px 0 16px; max-width: none; }
  .carousel__card-title { font-size: 20px; line-height: 24px; }
  .carousel__nav { padding: 40px calc(var(--edge) + 14px) 32px var(--edge); }
  .how-it-works__sticky {
    min-height: 0;
    padding: 128px 0 64px;
  }
  .how-it-works__content {
    max-width: 1050px;
    padding-inline: 24px;
  }
  .how-it-works__title {
    margin-bottom: 20px;
    font-size: var(--h2-fs);
    line-height: var(--h2-lh);
  }
  .how-it-works__media-wrap {
    gap: 8px;
  }
  .how-it-works__media {
    max-height: 100%;
    aspect-ratio: 870 / 920;
    height: auto;
    border-radius: 12px;
  }
  .how-it-works__video--desktop {
    display: none;
  }
  .how-it-works__video--mobile {
    display: block;
  }
  .how-it-works__copy {
    width: 100%;
    min-height: 56px;
    margin-top: 24px;
    padding-left: 2px;
    padding-right: 10px;
  }
  .how-it-works__copy p {
    font-size: var(--h3-fs);
    line-height: var(--h3-lh);
  }
  .hero-app {
    min-height: 100svh;
    padding: 80px 0;
  }
  .hero-app__content {
    width: min(350px, calc(100% - 48px));
    gap: 14px;
  }
  .hero-app__eyebrow {
    margin-bottom: -8px;
    font-size: var(--h6-fs);
    line-height: var(--h6-lh);
  }
  .hero-app__title {
    font-size: var(--display-fs);
    line-height: var(--display-lh);
    white-space: nowrap;
  }
  .hero-app__subtitle {
    width: 100%;
    margin-top: 0;
    font-size: var(--subtitle-fs);
    line-height: var(--subtitle-lh);
  }

  .early-access { padding: 80px 20px; }
  .early-access__panel { flex-direction: column; max-width: 354px; min-height: 0; border-radius: 24px; }
  .early-access__image { order: 1; width: 100%; flex-basis: auto; height: 472px; aspect-ratio: auto; }
  .early-access__content { order: 2; min-height: 403px; padding: 48px 32px; }
  .early-access__title { font-size: 24px; line-height: 28px; }
  .early-access__subtitle { margin-bottom: 36px; font-size: 18px; line-height: 24px; }
  .early-access__form { flex-direction: column; width: 100%; height: auto; gap: 12px; padding: 0; background: transparent; border-radius: 0; }
  .early-access__form:hover,
  .early-access__form:focus-within { background: transparent; }
  .early-access__input { width: 100%; height: 60px; flex: none; border-radius: 999px; background: #dedede; padding: 0 24px; font-size: 16px; line-height: 22px; }
  .early-access__submit { width: 100%; height: 60px; min-width: 0; font-size: 16px; line-height: 22px; padding: 0 24px; }
  .early-access__form.is-submitted .early-access__submit { min-width: 54px; }

  .kickstarter {
    padding: var(--space-16) 20px var(--space-14);
  }
  .kickstarter__card {
    max-width: 354px;
    border-radius: 24px;
  }
  .kickstarter__media {
    height: 472px;
    aspect-ratio: auto;
  }
  .kickstarter__badge {
    top: -6px;
    right: -8px;
  }
  .kickstarter__content {
    min-height: 342px;
    padding: 48px 32px;
  }
  .kickstarter__title {
    width: 100%;
    margin-bottom: 24px;
    font-size: clamp(18px, 5.35vw, 24px);
    line-height: 27.6px;
  }
  .kickstarter__copy {
    margin-bottom: 32px;
    font-size: var(--body-m-fs);
    line-height: var(--body-m-lh);
  }
  .kickstarter-strip__title {
    max-width: 300px;
    font-size: 24px;
    line-height: 31.68px;
  }
  .kickstarter-strip__button {
    font-size: 16px;
    line-height: 20px;
  }

  .faqs { padding: 64px 20px; }

  .footer__content { height: auto; min-height: 200px; padding: 40px 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; justify-content: center; gap: 36px; padding-top: 40px; }
  .footer__email { font-size: 20px; line-height: 26px; word-break: break-word; }
  .footer__lockup { align-items: baseline; flex-direction: row; gap: 7px; white-space: normal; }
  .footer__brand,
  .footer__product { font-size: 15px; }
}

/* Flex-gap fallback for older Safari. Chrome/modern browsers never use this. */
.no-flex-gap .floating-nav__button { margin-left: 16px; }
.no-flex-gap .hero__content > * + * { margin-top: 2px; }
.no-flex-gap .hero__content + .hero__bottom { margin-top: 24px; }
.no-flex-gap .hero__kickstarter-link > * + * { margin-left: 16px; }
.no-flex-gap .hero__email-form.is-submitted > * + * { margin-left: 12px; }
.no-flex-gap .endorsement > * + * { margin-top: 40px; }
.no-flex-gap .endorsement__group > * + * { margin-left: 64px; }
.no-flex-gap .endorsement__module > * + * { margin-top: 10px; }
.no-flex-gap .hero--problem .hero__content > * + *,
.no-flex-gap .hero--colors .hero__content > * + * { margin-top: 12px; }
.no-flex-gap .hero__head > * + * { margin-top: 2px; }
.no-flex-gap .how-it-works__content > * + * { margin-top: 40px; }
.no-flex-gap .how-it-works__media-wrap > * + * { margin-left: 20px; }
.no-flex-gap .how-it-works__indicator > * + * { margin-top: 5px; }
.no-flex-gap .carousel__card + .carousel__card { margin-left: 20px; }
.no-flex-gap .carousel__card-text > * + * { margin-top: 16px; }
.no-flex-gap .carousel__nav > * + * { margin-left: 16px; }
.no-flex-gap .hero__title--split > * + * { margin-left: 16px; }
.no-flex-gap .colorpicker > * + * { margin-top: 12px; }
.no-flex-gap .colorpicker__text > * + * { margin-left: 6px; }
.no-flex-gap .kickstarter__content > * + * { margin-top: 24px; }
.no-flex-gap .kickstarter-strip > * + * { margin-top: 24px; }
.no-flex-gap .faq__q > * + * { margin-left: 16px; }
.no-flex-gap .footer__inner > * + * { margin-left: 40px; }
.no-flex-gap .footer__lockup > * + * { margin-left: 7px; }

@media (max-width: 1199px) {
  .no-flex-gap .endorsement > * + * { margin-top: 32px; }
  .no-flex-gap .endorsement__group > * + * { margin-left: 48px; }
  .no-flex-gap .how-it-works__content > * + * { margin-top: 32px; }
  .no-flex-gap .how-it-works__media-wrap > * + * { margin-left: 12px; }
  .no-flex-gap .early-access__form > * + * { margin-top: 16px; }
  .no-flex-gap .footer__inner > * + * { margin-top: 32px; margin-left: 0; }
}

@media (max-width: 699px) {
  .no-flex-gap .floating-nav__button { margin-left: 10px; }
  .no-flex-gap .hero__content > * + * { margin-top: 14px; }
  .no-flex-gap .hero--principal .hero__content > * + * { margin-top: 2px; }
  .no-flex-gap .hero__title--split > * + * { margin-left: 8px; }
  .no-flex-gap .hero__head > * + * { margin-top: 6px; }
  .no-flex-gap .endorsement > * + * { margin-top: 28px; }
  .no-flex-gap .endorsement__group > * + * { margin-left: 28px; }
  .no-flex-gap .how-it-works__content > * + * { margin-top: 24px; }
  .no-flex-gap .how-it-works__media-wrap > * + * { margin-left: 8px; }
  .no-flex-gap .early-access__form > * + * { margin-top: 12px; }
  .no-flex-gap .footer__inner > * + * { margin-top: 36px; margin-left: 0; }
}
