/* Preview-only home sections (Sevilla pitch layout). Loaded only on /internal. */

html {
  scroll-behavior: smooth;
}

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

/* —— Hero —— */
.hero-preview {
  position: relative;
  overflow: hidden;
  background: #020617;
}

.hero-preview-visual {
  position: relative;
  width: 100%;
  background: #0f172a;
}

.hero-preview-visual img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 2560 / 1097;
  object-fit: cover;
  object-position: center 35%;
}

.hero-preview-partner-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.55) 28%, rgba(2, 6, 23, 0.88));
  pointer-events: none;
}

.hero-preview-partner-motif {
  /* Scale 1→10 from left(~66.5%) to right(~78%); target ≈ 7.9 */
  pointer-events: auto;
  position: absolute;
  bottom: 2rem;
  width: 22rem;
  max-width: min(92vw, 22rem);
  left: 75.3%;
  margin-left: -11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
}

@media (min-width: 900px) {
  .hero-preview-partner-motif {
    left: 74.4%;
    bottom: 2.15rem;
    width: 22rem;
    margin-left: -11rem;
  }
}

@media (min-width: 1280px) {
  .hero-preview-partner-motif {
    left: 73.6%;
    bottom: 2.35rem;
    width: 22rem;
    margin-left: -11rem;
  }
}

@media (max-width: 640px) {
  .hero-preview-partner-motif {
    left: 50%;
    width: min(94vw, 22rem);
    margin-left: calc(min(94vw, 22rem) / -2);
    bottom: 1.25rem;
  }
}

.hero-preview-partner-label {
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 0 rgba(2, 6, 23, 0.75),
    0 2px 10px rgba(2, 6, 23, 0.65),
    0 0 18px rgba(2, 6, 23, 0.45);
}

.hero-preview-partner-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.65rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* Same oval size for both */
  width: 10.5rem;
  min-width: 10.5rem;
  height: 2.65rem;
  min-height: 2.65rem;
  padding: 0 1rem;
  border-radius: 999px; /* ellipse / pill */
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.hero-chip--investor {
  background: #06b6d4;
  color: #0f172a;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}

.hero-chip--prescriber {
  background: rgba(15, 23, 42, 0.35);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.35);
}

.hero-chip:hover,
.hero-chip:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-chip--investor:hover,
.hero-chip--investor:focus-visible {
  background: #22d3ee;
}

.hero-chip--prescriber:hover,
.hero-chip--prescriber:focus-visible {
  background: rgba(15, 23, 42, 0.5);
}

/* White curve sits on the inverted (dark) frame below */
.hero-preview-transition {
  position: relative;
  z-index: 2;
  height: 2.85rem;
  margin-top: -1px;
  margin-bottom: -1px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 28%, 50% 100%, 0 28%);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.18);
}

.hero-preview-body {
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(6, 182, 212, 0.18), transparent 42%),
    radial-gradient(circle at 8% 88%, rgba(99, 102, 241, 0.14), transparent 40%),
    linear-gradient(165deg, #0b1224 0%, #0f172a 48%, #111827 100%);
  color: #e2e8f0;
  border-radius: 0 0 1.75rem 1.75rem;
}

.hero-preview-body .text-brand-dark,
.hero-preview-body h1 {
  color: #f8fafc !important;
}

.hero-preview-body .text-brand-muted {
  color: #94a3b8 !important;
}

.hero-preview-body .text-brand-cyanDark {
  color: #67e8f9 !important;
}

.hero-preview-body .cyan {
  color: #22d3ee;
}

.hero-preview-body a.text-brand-cyanDark:hover,
.hero-preview-body a.text-brand-cyanDark:focus-visible {
  color: #a5f3fc !important;
}

.hero-preview-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero-preview-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 3.5rem;
  }

  .hero-preview-body {
    padding-top: 1.5rem;
    padding-bottom: 4.25rem;
  }

  .hero-preview-partner-bar {
    padding: 1rem 1.5rem 1.35rem;
  }
}


.hero-preview::after {
  content: "";
  display: block;
  height: 4.75rem;
  margin-top: 0.75rem;
  background: linear-gradient(180deg, #0b1224 0%, #334155 28%, #cbd5e1 68%, #ffffff 100%);
}

/* —— Features hub —— */
.features-hub.section-wrap {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.features-hub-stage {
  position: relative;
  margin-top: 1.5rem;
  min-height: 0;
}

.features-hub-lines {
  display: none;
}

.features-hub-core {
  display: none;
}

.features-hub-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.features-hub-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1.25rem 1.3rem 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.features-hub-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.12), rgba(124, 58, 237, 0.1));
}

.features-hub-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.features-hub-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.features-hub-card-title span {
  color: #0891b2;
  font-variant-numeric: tabular-nums;
}

.features-hub-card-text {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}

.features-hub-footnote {
  margin: 1.15rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0e7490;
}

@media (min-width: 900px) {
  .features-hub-stage {
    min-height: 26rem;
    display: grid;
    place-items: center;
  }

  .features-hub-lines {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .features-hub-lines path {
    fill: none;
    stroke: url(#hubGrad);
    stroke-width: 2.2;
    stroke-linecap: round;
    opacity: 0.55;
  }

  .features-hub-core {
    display: grid;
    place-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .features-hub-core-ring {
    width: 6.4rem;
    height: 7.2rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(160deg, #ecfeff, #fff 45%, #ede9fe);
    border: 2px solid rgba(6, 182, 212, 0.55);
    box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.08), 0 18px 40px rgba(15, 23, 42, 0.12);
    display: grid;
    place-items: center;
  }

  .features-hub-core-ring img {
    width: 2.6rem;
    height: auto;
  }

  .features-hub-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 26rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.85rem 4.5rem;
  }

  .features-hub-card--0,
  .features-hub-card--1,
  .features-hub-card--2,
  .features-hub-card--3 {
    max-width: 28rem;
    width: 100%;
  }

  .features-hub-card--0 { grid-column: 1; grid-row: 1; align-self: end; justify-self: end; }
  .features-hub-card--1 { grid-column: 1; grid-row: 2; align-self: start; justify-self: end; }
  .features-hub-card--2 { grid-column: 2; grid-row: 1; align-self: end; justify-self: start; }
  .features-hub-card--3 { grid-column: 2; grid-row: 2; align-self: start; justify-self: start; }
}

/* —— Process + compare —— */
.process-preview-steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 900px) {
  .process-preview-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.process-preview-steps li {
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #fff;
}

.process-preview-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #ecfeff;
  color: #0e7490;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.process-preview-steps h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
}

.process-preview-steps p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #64748b;
}

.compare-board {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.compare-board-intro h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: #0f172a;
  text-wrap: balance;
}

.compare-board-intro p {
  margin: 0.5rem 0 0;
  color: #64748b;
  font-size: 0.98rem;
}

.compare-board-grid {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 800px) {
  .compare-board-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1rem;
  }
}

.compare-col {
  border-radius: 1.15rem;
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #fff;
}

.compare-col header h4 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
}

.compare-col--without header h4 { color: #b91c1c; }
.compare-col--with header h4 { color: #0f766e; }

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.compare-col li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.45rem;
  align-items: start;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #334155;
}

.compare-col--without li span { color: #dc2626; font-weight: 700; }
.compare-col--with li span { color: #0d9488; font-weight: 700; }

.compare-bridge {
  display: none;
}

@media (min-width: 800px) {
  .compare-bridge {
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0891b2;
  }
}

/* —— Wishlist —— */
.wishlist-layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .wishlist-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
    gap: 1.75rem;
    align-items: stretch;
  }
}

.wishlist-row {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .wishlist-row {
    grid-template-columns: 1fr 1fr;
  }
}

.wishlist-bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.wishlist-bullets li {
  position: relative;
  padding-left: 1.15rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.wishlist-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #06b6d4;
}

.wishlist-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(6, 182, 212, 0.28);
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  height: 100%;
}

.wishlist-field {
  display: grid;
  gap: 0.35rem;
}

.wishlist-field > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
}

.wishlist-field > span em {
  font-style: normal;
  font-weight: 500;
  color: #94a3b8;
}

.wishlist-field input,
.wishlist-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.85rem;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: #0f172a;
  background: #fff;
  min-height: 2.75rem;
}

.wishlist-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.wishlist-field input:focus,
.wishlist-field textarea:focus {
  outline: 2px solid rgba(6, 182, 212, 0.45);
  outline-offset: 1px;
  border-color: #22d3ee;
}

.wishlist-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.wishlist-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.wishlist-status {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.wishlist-status.is-ok { color: #0f766e; }
.wishlist-status.is-err { color: #b91c1c; }


.wishlist-legal--rgpd {
  margin: 0.35rem 0 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(14, 116, 144, 0.28);
  background: #ecfeff;
  color: #0f172a;
  font-size: 0.8rem;
  line-height: 1.45;
}

.wishlist-legal--rgpd a {
  color: #0e7490;
  font-weight: 700;
  text-decoration: underline;
}

.wishlist-legal {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #94a3b8;
}

/* —— Market —— */
.market-stats {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .market-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.market-stats li {
  padding: 1.15rem 1.2rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.market-stats-label {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0891b2;
}

.market-stats-value {
  margin: 0.45rem 0 0;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
}

.market-stats-note {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #64748b;
}

.market-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .market-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.market-points li {
  padding: 1rem 1.1rem;
  border-left: 3px solid #06b6d4;
  background: rgba(255, 255, 255, 0.7);
}

.market-points h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.market-points p {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #64748b;
}

.market-source {
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #94a3b8;
}

/* —— Ideas —— */
.ideas-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .ideas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ideas-card {
  position: relative;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: linear-gradient(165deg, #fff, #f0f9ff);
  overflow: hidden;
}

.ideas-num {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: #06b6d4;
  margin-bottom: 0.65rem;
}

.ideas-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

.ideas-card p {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}

.ideas-tagline {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0e7490;
}

/* —— Meet / final —— */
.meet-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(28rem, 70vh, 40rem);
  display: grid;
  align-items: end;
}

.meet-bg {
  position: absolute;
  inset: 0;
}

.meet-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
}

.meet-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.15) 0%, rgba(2, 6, 23, 0.2) 38%, rgba(2, 6, 23, 0.78) 68%, rgba(2, 6, 23, 0.9) 100%);
}

.meet-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  align-items: center;
  justify-items: end;
  min-height: clamp(22rem, 58vh, 34rem);
}

@media (min-width: 900px) {
  .meet-inner {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 34rem);
    gap: 2rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    justify-items: stretch;
  }

  .meet-copy--solo {
    grid-column: 2;
    max-width: none;
    width: 100%;
    text-align: left;
  }
}

.meet-copy--solo {
  max-width: 34rem;
  width: min(100%, 34rem);
}

@media (max-width: 899px) {
  .meet-bg img {
    object-position: left center;
  }

  .meet-veil {
    background:
      linear-gradient(180deg, rgba(2, 6, 23, 0.2) 0%, rgba(2, 6, 23, 0.55) 45%, rgba(2, 6, 23, 0.92) 100%);
  }

  .meet-inner {
    align-items: end;
    justify-items: stretch;
  }

  .meet-copy--solo {
    width: 100%;
    max-width: none;
  }
}

.meet-eyebrow {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #67e8f9;
}

.meet-title {
  margin: 0.65rem 0 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.meet-grad {
  background: linear-gradient(90deg, #22d3ee, #a78bfa 55%, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.meet-sub {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.meet-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meet-actions > a {
  flex: 1 1 11rem;
  justify-content: center;
  text-align: center;
}

.meet-contact {
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
  font-size: 0.95rem;
  color: #94a3b8;
}

.meet-contact a {
  color: #67e8f9;
  text-decoration: none;
}

.meet-contact a:hover,
.meet-contact a:focus-visible {
  color: #fff;
  outline: none;
}

@media (max-width: 640px) {
  .process-preview-steps {
    grid-template-columns: 1fr;
  }

  .hero-chip {
    width: 9.5rem;
    min-width: 9.5rem;
    flex: 0 0 9.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .meet-robot img {
    transform: none;
  }
}


/* Home pitch responsive: keep content inside safe horizontal inset */
.home-pitch {
  overflow-x: hidden;
}

.home-pitch .shell {
  width: 100%;
  max-width: 80rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px) + 1rem);
  padding-right: max(1rem, env(safe-area-inset-right, 0px) + 1rem);
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .home-pitch .shell {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px) + 0.85rem);
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px) + 0.85rem);
  }

  .home-pitch .section-title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .home-pitch .features-hub-card,
  .home-pitch .compare-col,
  .home-pitch .wishlist-form,
  .home-pitch .investors-panel,
  .home-pitch .conversion-hook {
    max-width: 100%;
  }

  .home-pitch .hero-preview-visual img {
    min-height: 12rem;
    object-position: 35% center;
  }

  .hero-preview-partner-motif {
    left: 50%;
    width: min(94vw, 22rem);
    margin-left: calc(min(94vw, 22rem) / -2);
    margin-right: 0;
    padding: 0 0.25rem;
  }
}
