/* Absolute Creators — programme landing */

.mp-cr {
  --mp-bg: #ffffff;
  --cr-ink: #222222;
  --cr-muted: #6a6a6a;
  --cr-line: #ebebeb;
  --cr-soft: #f7f7f7;
  --cr-accent: #c9a962;
  --cr-radius: 22px;
  background: #fff;
  color: var(--cr-ink);
  position: relative;
}

/* Transparent over the hero glow — scrolls away with the page (not sticky). */
.mp-cr .mp-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.mp-cr .mp-header.is-scrolled {
  border-bottom-color: transparent;
  box-shadow: none;
  background: transparent;
}

.mp-cr .mp-brand-sub { color: #a8893f; }

.cr-pin {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transform: translateY(-110%);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(12, 27, 51, 0.08);
  box-shadow: none;
}
body.is-subnav-pin .cr-pin {
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(12, 27, 51, 0.06);
}
.cr-pin-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: 3.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cr-pin-inner .mp-brand {
  flex: 0 1 auto;
  min-width: 0;
}
.cr-pin-inner .mp-nav {
  display: flex;
  flex: 1;
  min-width: 0;
  justify-content: center;
  gap: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.cr-pin-inner .mp-nav::-webkit-scrollbar { display: none; }
.cr-pin-inner .mp-nav a {
  color: #3d3d3d;
  font-size: 0.88rem;
  font-weight: 550;
}
.cr-pin-inner .mp-nav a:hover { color: #0c1b33; }
.cr-pin-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}
.cr-pin-actions .mp-menu-toggle { display: none; }
.mp-cr .cr-pin a.mp-btn-primary,
.mp-cr .cr-pin .mp-btn-primary {
  background: #111;
  border-color: #111;
  color: #fff;
  min-height: 2.35rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 650;
  box-shadow: none;
}
.mp-cr .cr-pin a.mp-btn-primary:hover,
.mp-cr .cr-pin .mp-btn-primary:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
}
@media (max-width: 979px) {
  .cr-pin-inner {
    width: min(1180px, calc(100% - 1.5rem));
    min-height: 3.35rem;
    gap: 0.65rem;
  }
  .cr-pin-inner .mp-nav { display: none; }
  .cr-pin-actions .mp-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(12, 27, 51, 0.12);
    border-radius: 8px;
    background: #fff;
    flex-shrink: 0;
  }
  .cr-pin-actions .mp-btn {
    display: none;
  }
}

.mp-cr .mp-nav a { color: #3d3d3d; font-weight: 500; }
.mp-cr .mp-btn-primary {
  background: #111;
  border-color: #111;
}
.mp-cr .mp-btn-primary:hover { background: #2a2a2a; }

.mp-cr .mp-wrap-wide {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.cr-hero-wrap {
  position: relative;
  overflow: clip;
}
.cr-hero-glow {
  position: absolute;
  inset: -6rem -5% auto;
  height: calc(70% + 6rem);
  background:
    radial-gradient(ellipse 55% 60% at 78% 30%, rgba(201, 169, 98, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 50% at 12% 10%, rgba(12, 27, 51, 0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.cr-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3.25rem;
  align-items: center;
  padding: calc(var(--mp-header-h, 68px) + 2.25rem) 0 1.75rem;
}

.cr-hero-copy h1 {
  font-family: var(--mp-serif, "Cormorant Garamond", Georgia, serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.55rem, 5.4vw, 3.85rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 12ch;
  margin: 0 0 1rem;
  color: #0c1b33;
}
.mp-cr .cr-btn-gold.mp-btn-primary {
  background: #c9a962;
  border-color: #c9a962;
  color: #0c1b33;
  font-weight: 700;
}
.mp-cr .cr-btn-gold.mp-btn-primary:hover {
  background: #d4b872;
  border-color: #d4b872;
  color: #0c1b33;
}

.cr-hero-copy .mp-hero-lead {
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--cr-muted);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.cr-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}
.cr-hero-ctas .mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  height: 3rem;
  padding: 0 1.2rem;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}
.mp-cr .cr-hero-ctas .mp-btn-ghost {
  background: #fff;
  border: 1px solid rgba(12, 27, 51, 0.16);
  color: #0c1b33;
}
.mp-cr .cr-hero-ctas .mp-btn-ghost:hover {
  background: #fff;
  border-color: #0c1b33;
  color: #0c1b33;
}
.mp-cr .cr-hero-ctas .cr-btn-gold.mp-btn-primary {
  border-width: 1px;
  border-style: solid;
}

.cr-hero-micro {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: #8a8a8a;
}

.cr-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  grid-template-rows: 13.5rem 11.5rem;
  gap: 0.7rem;
}

.cr-mosaic figure {
  margin: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--cr-radius);
  background: #eee;
  box-shadow: 0 16px 36px rgba(12, 27, 51, 0.1);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cr-mosaic figure.is-offset {
  transform: translateY(0.85rem);
}
.cr-mosaic:hover figure.is-offset {
  transform: translateY(0.2rem);
}
.cr-mosaic:hover .is-tall {
  transform: translateY(-0.35rem);
}

.cr-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cr-mosaic .is-tall {
  grid-row: 1 / 3;
}

.cr-films-sec {
  padding: 2.5rem 0 4.75rem;
  background:
    linear-gradient(180deg, #fff 0%, #faf8f4 100%);
  border-bottom: 0;
}
.cr-films-sec .cr-film-grid {
  gap: 1.15rem;
}
.cr-films-sec .cr-film {
  text-align: left;
  border-radius: 22px;
  overflow: hidden;
  background: #0c1b33;
  color: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.cr-films-sec .cr-film:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(12, 27, 51, 0.2);
}
.cr-films-sec .cr-film-media {
  border-radius: 0;
  aspect-ratio: 4 / 5;
}
.cr-films-sec .cr-film-caption {
  display: block;
  box-sizing: border-box;
  padding: 1.15rem 1.2rem 1.35rem;
}
.cr-films-sec .cr-film-caption strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 0.4rem;
}
.cr-films-sec .cr-film-caption span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}
.cr-films {
  padding: 1.5rem 0 4.5rem;
  background: #fff;
  border-bottom: 1px solid var(--cr-line);
}

.cr-films-head {
  max-width: 40rem;
  margin: 0 0 1.5rem;
}

/* Persona compositions — generated portraits + Absolute UI chips */
.cr-persona-sec {
  padding: 4.5rem 0 4.75rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 98, 0.08), transparent 55%),
    #f7f6f3;
}
.cr-persona-sec .cr-sec-head {
  max-width: 38rem;
  margin: 0 0 2.25rem;
}
.cr-persona-sec .mp-eyebrow { color: #a8893f; }
.cr-persona-sec h2 {
  margin: 0.35rem 0 0.75rem;
  color: #0c1b33;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.cr-persona-sec .mp-lead {
  margin: 0;
  color: #5a6578;
  max-width: 36rem;
}
.cr-persona-stack {
  display: grid;
  gap: 1.75rem;
}
.cr-persona-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(12, 27, 51, 0.06);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(12, 27, 51, 0.07);
}
.cr-persona-card.is-earn {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.cr-persona-card.is-earn .cr-persona-stage { order: 2; }
.cr-persona-card.is-earn .cr-persona-copy { order: 1; }
.cr-persona-stage {
  position: relative;
  min-height: 22rem;
  isolation: isolate;
  overflow: hidden;
  background: #efece6;
}
.cr-persona-card.is-share .cr-persona-stage {
  background: linear-gradient(160deg, #e8eef6 0%, #f4f1ea 55%, #efe6d4 100%);
}
.cr-persona-card.is-earn .cr-persona-stage {
  background: linear-gradient(160deg, #f3ebe0 0%, #f7f1e8 45%, #e8dcc8 100%);
}
.cr-persona-blob {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(78%, 22rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  z-index: 0;
  pointer-events: none;
}
.cr-persona-card.is-share .cr-persona-blob {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(145deg, #0c1b33 0%, #1a3358 55%, #c9a962 130%);
}
.cr-persona-card.is-earn .cr-persona-blob {
  background:
    radial-gradient(circle at 60% 25%, rgba(255, 255, 255, 0.45), transparent 50%),
    linear-gradient(145deg, #c9a962 0%, #a8893f 48%, #0c1b33 125%);
  border-radius: 48% 52% 42% 58% / 55% 45% 55% 45%;
}
.cr-persona-photo {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(68%, 17.5rem);
  height: 92%;
  object-fit: cover;
  object-position: center top;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 40% 40% 8% 8% / 18% 18% 4% 4%;
  filter: saturate(1.02);
  box-shadow: 0 12px 36px rgba(12, 27, 51, 0.18);
}
.cr-persona-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(12, 27, 51, 0.08);
  box-shadow: 0 8px 20px rgba(12, 27, 51, 0.1);
  color: #0c1b33;
  font-size: 0.78rem;
  line-height: 1.25;
}
.cr-persona-float-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.cr-persona-float strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0c1b33;
}
.cr-persona-float-k {
  display: block;
  color: #6a7384;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cr-persona-float span:not(.cr-persona-float-k):not(.cr-persona-float-ico):not(.cr-persona-url) {
  display: block;
  color: #6a7384;
  font-size: 0.72rem;
  font-weight: 500;
}
.cr-persona-url {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem !important;
  font-weight: 650 !important;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.cr-persona-float-ico {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #0c1b33;
  color: #c9a962;
  flex: none;
}
.cr-persona-float-ico.is-soft {
  background: #f0eee9;
  color: #0c1b33;
}
.cr-persona-float-ico svg { width: 1rem; height: 1rem; }
.cr-persona-float.is-creators {
  top: 1.15rem;
  left: 1.1rem;
}
.cr-persona-float.is-url {
  top: 1.15rem;
  right: 1.1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  max-width: min(48%, 11rem);
}
.cr-persona-float.is-url .cr-persona-url {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.cr-persona-float.is-guests {
  left: 1.1rem;
  bottom: 1.2rem;
  max-width: 13rem;
}
.cr-persona-float.is-launch,
.cr-persona-float.is-sales {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  min-width: 6.8rem;
}
.cr-persona-float.is-launch {
  top: 1.15rem;
  left: 1.1rem;
}
.cr-persona-float.is-sales {
  top: 1.15rem;
  right: 1.1rem;
}
.cr-persona-float.is-offer {
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.2rem;
  justify-content: space-between;
  max-width: none;
}
.cr-persona-float.is-offer em {
  margin: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #0c1b33;
  color: #fff;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.cr-persona-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.1rem 2.2rem;
  background: #fff;
}
.cr-persona-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8893f;
}
.cr-persona-copy h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0c1b33;
}
.cr-persona-copy p {
  margin: 0;
  color: #5a6578;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 32ch;
}

.cr-film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cr-film {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.cr-film-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.cr-film-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.5s ease;
}

.cr-film:hover img { transform: scale(1.08); }

.cr-film-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.4rem;
  height: 3.4rem;
  margin: -1.7rem 0 0 -1.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.cr-film-play svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.cr-film-caption {
  display: block;
  padding: 0.85rem 0.15rem 0;
}

.cr-film-caption strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.25;
  margin: 0 0 0.35rem;
}

.cr-film-caption span {
  display: block;
  color: var(--cr-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 12, 12, 0.78);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.cr-lightbox[hidden] { display: none; }

.cr-lightbox-card {
  position: relative;
  width: min(52rem, 100%);
  background: #111;
  color: #fff;
  border-radius: 22px;
  overflow: hidden;
}

.cr-lightbox-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.cr-lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: crKen 14s ease-in-out infinite alternate;
}

@keyframes crKen {
  from { transform: scale(1); }
  to { transform: scale(1.12) translate3d(-2%, -1%, 0); }
}

.cr-lightbox-copy {
  padding: 1.15rem 1.25rem 1.3rem;
}

.cr-lightbox-copy p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.cr-lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.2rem;
  z-index: 2;
}

.mp-cr .mp-section { padding: 3.25rem 0; }
.mp-cr .mp-section-alt { background: var(--cr-soft); }

/* Section heads */
.cr-sec-head {
  max-width: 40rem;
  margin: 0 0 2rem;
}
.cr-sec-head.is-center {
  margin-inline: auto;
  text-align: center;
}
.cr-sec-head h2 {
  font-family: var(--mp-serif, "Cormorant Garamond", Georgia, serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

/* How you earn — Linear/Stripe-inspired asymmetric bento */
.mp-cr .cr-earn-sec {
  position: relative;
  margin: 0;
  padding: 5rem 0 5.25rem;
  background:
    radial-gradient(ellipse 65% 50% at 8% 0%, rgba(201, 169, 98, 0.26), transparent 58%),
    radial-gradient(ellipse 45% 40% at 100% 80%, rgba(201, 169, 98, 0.1), transparent 52%),
    linear-gradient(160deg, #0a1528 0%, #0c1b33 42%, #152a48 100%);
  color: #fff;
  overflow: hidden;
}
.mp-cr .cr-earn-sec .mp-eyebrow { color: #c9a962; }
.mp-cr .cr-earn-sec h2 { color: #fff; }
.mp-cr .cr-earn-sec .mp-lead {
  color: rgba(255, 255, 255, 0.7);
  max-width: 38rem;
}
.cr-earn-bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.95rem;
}
.cr-earn-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem 1.3rem 1.45rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.cr-earn-tile.is-feature {
  grid-row: 1 / span 2;
  justify-content: flex-end;
  padding: 1.85rem 1.7rem 1.9rem;
  background:
    linear-gradient(165deg, rgba(201, 169, 98, 0.2), rgba(255, 255, 255, 0.04) 45%),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 169, 98, 0.38);
}
.cr-earn-tile.is-guest {
  grid-column: 2 / span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.1rem;
}
.cr-earn-tile.is-guest .cr-earn-ico { margin-bottom: 0; flex: none; }
.cr-earn-tile.is-guest > :not(.cr-earn-ico) { min-width: 0; }
.cr-earn-tile:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 169, 98, 0.42);
}
.cr-earn-ico {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.05rem;
  border-radius: 999px;
  background: rgba(201, 169, 98, 0.16);
  color: #c9a962;
}
.cr-earn-ico svg { width: 1.15rem; height: 1.15rem; }
.cr-earn-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.92);
}
.cr-earn-tile strong {
  display: block;
  margin: 0 0 0.6rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
  font-family: var(--mp-serif, "Cormorant Garamond", Georgia, serif);
  font-style: italic;
  font-weight: 600;
}
.cr-earn-tile.is-feature strong {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  margin-bottom: 0.85rem;
}
.cr-earn-tile > p:last-child {
  margin: 0;
  margin-top: auto;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

/* How it works — editorial sticky + vertical timeline */
.mp-cr .cr-how-sec {
  padding: 5rem 0 5.25rem;
  background:
    linear-gradient(180deg, #f7f4ef 0%, #f1ede5 55%, #ebe6dc 100%);
}
.cr-how-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem 4rem;
  align-items: start;
}
.cr-how-intro {
  position: sticky;
  top: calc(var(--mp-header-h, 72px) + 1.25rem);
  padding-top: 0.2rem;
}
.cr-how-intro .mp-eyebrow { color: #a8893f; }
.cr-how-intro h2 {
  color: #0c1b33;
  font-family: var(--mp-serif, "Cormorant Garamond", Georgia, serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -0.03em;
  max-width: 14ch;
  line-height: 1.1;
}
.cr-how-intro .mp-lead {
  color: #5c6675;
  max-width: 28rem;
}
.cr-how-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}
.cr-how-timeline::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.15), rgba(12, 27, 51, 0.22), rgba(201, 169, 98, 0.15));
}
.cr-how-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 1.1rem;
  padding: 1.35rem 0 1.35rem 0.15rem;
  border-bottom: 1px solid rgba(12, 27, 51, 0.08);
}
.cr-how-step:last-child { border-bottom: 0; }
.cr-how-num {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: #0c1b33;
  color: #c9a962;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px #f1ede5;
  z-index: 1;
}
.cr-how-body h3 {
  margin: 0.15rem 0 0.4rem;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  color: #0c1b33;
}
.cr-how-body p {
  margin: 0;
  color: #5c6675;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 38rem;
}

/* What it can look like — dual programme scales (not a table) */
.mp-cr .cr-math-sec {
  padding: 5rem 0 5.25rem;
  background: #fff;
}
.cr-math-scales {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.15rem;
  align-items: stretch;
}
.cr-math-scale {
  position: relative;
  padding: 1.7rem 1.55rem 1.6rem;
  border-radius: 28px;
  background: #f7f4ef;
  border: 1px solid #ebe4d8;
  overflow: hidden;
}
.cr-math-scale.is-programme {
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(201, 169, 98, 0.28), transparent 50%),
    #0c1b33;
  border-color: #0c1b33;
  color: #fff;
  transform: translateY(-0.35rem);
  box-shadow: 0 24px 50px rgba(12, 27, 51, 0.18);
}
.cr-math-tag {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8893f;
}
.cr-math-scale.is-programme .cr-math-tag { color: #c9a962; }
.cr-math-big {
  margin: 0;
  font-family: var(--mp-serif, "Cormorant Garamond", Georgia, serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #0c1b33;
}
.cr-math-scale.is-programme .cr-math-big { color: #fff; }
.cr-math-sub {
  margin: 0.45rem 0 1.35rem;
  font-size: 0.9rem;
  color: #6a737f;
}
.cr-math-scale.is-programme .cr-math-sub { color: rgba(255, 255, 255, 0.62); }
.cr-math-scale ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.cr-math-scale li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(12, 27, 51, 0.08);
  font-size: 0.92rem;
  color: #5a6578;
}
.cr-math-scale.is-programme li {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}
.cr-math-scale li em {
  font-style: normal;
  font-weight: 800;
  color: #0c1b33;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.cr-math-scale.is-programme li em { color: #c9a962; }
.cr-math-note {
  margin: 1.35rem 0 0;
  max-width: 48rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #6a737f;
}

/* FAQ + start polish */
.mp-cr .mp-faq {
  background: #faf8f4;
  padding: 4.5rem 0;
}
.mp-cr .cr-start-sec {
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(201, 169, 98, 0.12), transparent 60%),
    #fff;
}

.cr-apply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0 4.5rem;
}

.cr-apply-photo {
  position: sticky;
  top: calc(var(--mp-header-h, 68px) + 1rem);
}

.cr-apply-photo img {
  width: 100%;
  height: min(70vh, 38rem);
  object-fit: cover;
  border-radius: 28px;
  background: #eee;
}

.cr-form-shell h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
}

.cr-form-shell > p {
  color: var(--cr-muted);
  margin: 0 0 1.35rem;
  line-height: 1.5;
}

.cr-progress {
  height: 6px;
  background: #eee;
  border-radius: 99px;
  overflow: hidden;
  margin: 0 0 1.1rem;
}

.cr-progress > span {
  display: block;
  height: 100%;
  width: 33%;
  background: var(--cr-accent);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.cr-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.cr-steps li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #b0b0b0;
}

.cr-steps li.is-on { color: #111; }
.cr-steps li.is-done { color: #6a6a6a; }

.cr-step-num {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  background: #eee;
  color: #666;
}

.cr-steps li.is-on .cr-step-num {
  background: #111;
  color: #fff;
}

.cr-steps li.is-done .cr-step-num {
  background: #e8e8e8;
  color: #111;
}

.cr-form .hs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.cr-form .hs-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 0.9rem;
}

.cr-form .hs-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #222;
}

.cr-form input[type="text"],
.cr-form input[type="email"],
.cr-form input[type="tel"],
.cr-form input[type="url"],
.cr-form textarea,
.cr-form select {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  padding: 0.78rem 0.85rem;
  font: inherit;
  background: #fff;
}

.cr-form textarea { min-height: 5.5rem; resize: vertical; }

.cr-form input:focus,
.cr-form textarea:focus {
  outline: 2px solid #111;
  outline-offset: 1px;
  border-color: #111;
}

.cr-choice {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.cr-choice-opt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.cr-social {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--cr-line);
}

.cr-social-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cr-line);
}

.cr-social-ico {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.72rem;
}

.cr-social-row strong { font-size: 0.98rem; }

.cr-add {
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.cr-add.is-on { background: #eee; color: #111; }

.cr-social-url {
  grid-column: 1 / -1;
}

.cr-form-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.cr-form-nav.is-split { justify-content: space-between; }

.cr-back {
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-weight: 700;
}

.mp-cr .cr-form-nav .mp-btn-primary {
  border-radius: 999px;
  background: #111;
  border-color: #111;
  padding: 0.7rem 1.35rem;
}

.mp-cr .cr-form-nav .mp-btn-primary:hover {
  background: #2a2a2a;
}

.cr-form-status {
  min-height: 1.2rem;
  font-size: 0.86rem;
  margin: 0.4rem 0 0;
}

.cr-form-status.is-error { color: #b42318; }

.cr-hint {
  font-size: 0.8rem;
  color: var(--cr-muted);
  line-height: 1.45;
  margin: -0.45rem 0 0.9rem;
}

.hs-thanks {
  padding: 1.5rem 0;
}

.cr-kit {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  gap: 1.75rem 2.4rem;
  align-items: center;
}
.cr-kit-copy { padding-top: 0.15rem; }
.cr-kit-copy h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  letter-spacing: -0.04em;
  max-width: 16ch;
}
.cr-kit-copy .mp-lead { max-width: 34rem; }
.cr-kit-legend,
.cr-kit .hs-terms-link {
  grid-column: 1 / -1;
  align-self: start;
}
.cr-kit-stage {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(201, 169, 98, 0.22), transparent 46%),
    radial-gradient(ellipse at 100% 100%, rgba(12, 27, 51, 0.08), transparent 42%),
    #f4efe6;
  border: 1px solid #ece6da;
}
.cr-kit-browser {
  background: #0c1b33;
  border-radius: 18px;
  padding: 0.85rem 1rem 1rem;
  box-shadow: 0 18px 40px rgba(12, 27, 51, 0.18);
}
.cr-kit-browser .cr-kit-kicker {
  color: #c9a962;
  margin-bottom: 0.55rem;
}
.cr-kit-chrome {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}
.cr-kit-chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.cr-kit-chrome span:nth-child(1) { background: #c9a962; }
.cr-kit-url {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.28);
  color: #f4efe6;
  font-size: clamp(0.78rem, 2.2vw, 0.98rem);
  font-weight: 600;
  overflow: hidden;
}
.cr-kit-url svg { width: 15px; height: 15px; flex: none; color: #c9a962; }
.cr-kit-url span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cr-kit-url em {
  font-style: normal;
  color: #c9a962;
}
.cr-kit-panels {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  gap: 0.85rem;
  align-items: start;
}
.cr-kit-check,
.cr-kit-dash {
  background: #fff;
  border-radius: 20px;
  padding: 1.05rem 1.1rem 1.15rem;
  box-shadow: 0 10px 28px rgba(12, 27, 51, 0.06);
}
.cr-kit-check { transform: rotate(-1.4deg); }
.cr-kit-dash { transform: rotate(1.1deg); }
.cr-kit-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8893f;
}
.cr-kit-field {
  display: block;
  padding: 0.7rem 0.85rem 0.75rem;
  border: 1px dashed rgba(12, 27, 51, 0.16);
  border-radius: 14px;
  background: #faf7f1;
}
.cr-kit-field span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8a8378;
  margin-bottom: 0.2rem;
}
.cr-kit-field strong {
  font-size: 1.12rem;
  color: #0c1b33;
  font-weight: 800;
}
.cr-kit-check b {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #0c1b33;
  color: #c9a962;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.cr-kit-stay {
  margin: -0.2rem 0 0.7rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0c1b33;
}
.cr-kit-dash ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.cr-kit-dash li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #5a6578;
}
.cr-kit-dash li em {
  font-style: normal;
  font-weight: 800;
  color: #0c1b33;
  font-variant-numeric: tabular-nums;
}
.cr-kit-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid #ece6da;
  font-size: 0.82rem;
  color: #8a8378;
}
.cr-kit-total strong {
  font-size: 1.2rem;
  color: #0c1b33;
  font-variant-numeric: tabular-nums;
}
.cr-kit-pay {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #0c1b33;
  color: #c9a962;
  font-size: 0.82rem;
  font-weight: 700;
}
.cr-kit-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  counter-reset: kit;
}
.cr-kit-legend li {
  min-width: 0;
  padding-top: 0.2rem;
  counter-increment: kit;
}
.cr-kit-legend li::before {
  content: counter(kit, decimal-leading-zero);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #c9a962;
}
.cr-kit-legend strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 1rem;
  color: #0c1b33;
}
.cr-kit-legend p {
  margin: 0;
  color: #5a6578;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cr-kit .hs-terms-link { margin-top: 0.2rem; }

@media (max-width: 1024px) {
  .cr-persona-card,
  .cr-persona-card.is-earn {
    grid-template-columns: 1fr;
  }
  .cr-persona-card.is-earn .cr-persona-stage { order: 0; }
  .cr-persona-card.is-earn .cr-persona-copy { order: 0; }
  .cr-persona-stage { min-height: 20rem; }
  .cr-persona-copy { padding: 1.6rem 1.4rem 1.75rem; }
  .cr-persona-copy p { max-width: none; }
  .mp-cr .mp-nav { display: none; }
  .mp-cr .mp-header-actions .mp-lang,
  .mp-cr .mp-header-actions .mp-btn { display: none; }
  .mp-cr .mp-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(12, 27, 51, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-shrink: 0;
  }
  .mp-cr .mp-mobile { display: block; }
  .cr-hero,
  .cr-apply,
  .cr-mosaic {
    grid-template-columns: 1fr;
  }
  .cr-kit { grid-template-columns: 1fr; }
  .cr-kit-panels { grid-template-columns: 1fr; }
  .cr-kit-check,
  .cr-kit-dash { transform: none; }
  .cr-mosaic {
    grid-template-rows: 16rem 11rem 11rem;
  }
  .cr-mosaic .is-tall { grid-row: auto; min-height: 16rem; }
  .cr-mosaic figure.is-offset { transform: none; }
  .cr-apply-photo { position: static; }
  .cr-apply-photo img { height: 22rem; }
  .cr-film-grid { grid-template-columns: 1fr 1fr; }
  .cr-earn-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .cr-earn-tile.is-feature {
    grid-row: auto;
    grid-column: 1 / -1;
  }
  .cr-earn-tile.is-guest {
    grid-column: 1 / -1;
  }
  .cr-how-layout { grid-template-columns: 1fr; gap: 1.75rem; }
  .cr-how-intro { position: static; }
  .cr-math-scales { grid-template-columns: 1fr; }
  .cr-math-scale.is-programme { transform: none; }
}

@media (max-width: 719px) {
  .cr-hero { padding: calc(var(--mp-header-h, 56px) + 1.35rem) 0 1.25rem; gap: 1.5rem; }
  .cr-persona-sec { padding: 3.2rem 0 3.4rem; }
  .cr-persona-stage { min-height: 18.5rem; }
  .cr-persona-photo { width: min(72%, 15rem); }
  .cr-persona-float { padding: 0.6rem 0.72rem; border-radius: 11px; }
  .cr-persona-float.is-url,
  .cr-persona-float.is-sales,
  .cr-persona-float.is-launch { max-width: 8.5rem; }
  .cr-persona-float.is-offer {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.95rem;
  }
  .cr-persona-float.is-offer em { padding: 0.35rem 0.65rem; }
  .cr-hero-copy h1 { max-width: none; font-size: clamp(2.2rem, 9vw, 2.75rem); }
  .cr-form .hs-row { grid-template-columns: 1fr; }
  .cr-mosaic { grid-template-rows: 12rem 9.5rem 9.5rem; gap: 0.5rem; }
  .cr-kit-legend { grid-template-columns: 1fr; }
  .cr-film-grid { grid-template-columns: 1fr; }
  .cr-films-sec .cr-film-media { aspect-ratio: 16 / 10; }
  .cr-earn-bento { grid-template-columns: 1fr; }
  .cr-earn-tile.is-guest {
    flex-direction: column;
    gap: 0;
  }
  .cr-earn-tile.is-guest .cr-earn-ico { margin-bottom: 1rem; }
  .mp-cr .cr-earn-sec,
  .mp-cr .cr-how-sec,
  .mp-cr .cr-math-sec { padding: 3.4rem 0 3.6rem; }
  .cr-earn-tile strong { font-size: 1.85rem; }
  .cr-earn-tile.is-feature strong { font-size: 2.4rem; }
  .cr-how-timeline::before { left: 1.2rem; }
  .cr-math-big { font-size: 2.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cr-mosaic figure,
  .cr-earn-tile,
  .cr-films-sec .cr-film { transition: none; }
  .cr-mosaic:hover figure.is-offset,
  .cr-mosaic:hover .is-tall { transform: none; }
}
