:root {
  --rn-ink: #f5f2e9;
  --rn-muted: rgba(245, 242, 233, .66);
  --rn-gold: #d7b45d;
  --rn-gold-soft: rgba(215, 180, 93, .18);
  --rn-panel: rgba(10, 13, 16, .96);
  --rn-panel-2: rgba(20, 24, 29, .92);
  --rn-stroke: rgba(255, 255, 255, .11);
}

body.rolix-innovation-open {
  overflow: hidden !important;
}

#rolixInnovation {
  position: fixed;
  inset: 0;
  z-index: 100400;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2.2vw, 34px);
  color: var(--rn-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  transition: opacity .42s ease, visibility .42s ease;
}

#rolixInnovation[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.rn-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(215, 180, 93, .18), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(111, 138, 157, .18), transparent 33%),
    rgba(2, 4, 6, .78);
  backdrop-filter: blur(22px) saturate(.82);
  -webkit-backdrop-filter: blur(22px) saturate(.82);
}

.rn-backdrop::before,
.rn-backdrop::after {
  content: "";
  position: absolute;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  border: 1px solid rgba(215, 180, 93, .09);
  filter: blur(.2px);
  animation: rn-orbit 16s linear infinite;
}

.rn-backdrop::before {
  left: -18vw;
  top: -20vw;
}

.rn-backdrop::after {
  right: -20vw;
  bottom: -22vw;
  animation-direction: reverse;
  animation-duration: 21s;
}

.rn-shell {
  position: relative;
  width: min(1120px, 96vw);
  max-height: min(930px, 95vh);
  overflow: hidden;
  border: 1px solid var(--rn-stroke);
  border-radius: clamp(22px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 38%),
    linear-gradient(180deg, var(--rn-panel-2), var(--rn-panel));
  box-shadow:
    0 38px 110px rgba(0, 0, 0, .62),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  transform: translateY(18px) scale(.985);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
  backface-visibility: hidden;
  will-change: transform;
}

#rolixInnovation[aria-hidden="false"] .rn-shell {
  transform: translateY(0) scale(1);
}

.rn-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.rn-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: clamp(22px, 3vw, 38px) clamp(22px, 4vw, 48px) 18px;
}

.rn-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--rn-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
}

.rn-kicker::before {
  content: "";
  width: 27px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.rn-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(27px, 4.2vw, 54px);
  line-height: .98;
  letter-spacing: -.048em;
  font-weight: 780;
}

.rn-subtitle {
  max-width: 740px;
  margin: 14px 0 0;
  color: var(--rn-muted);
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.65;
}

.rn-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.rn-fullscreen-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  color: var(--rn-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
  cursor: pointer;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.rn-fullscreen-toggle[hidden] {
  display: none !important;
}

.rn-fullscreen-toggle:hover,
.rn-fullscreen-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 180, 93, .5);
  background: linear-gradient(135deg, rgba(215, 180, 93, .18), rgba(255, 255, 255, .055));
  outline: none;
}

.rn-fullscreen-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  color: var(--rn-gold);
  font-size: 18px;
  line-height: 1;
}

.rn-video-download {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(215, 180, 93, .42);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(215, 180, 93, .22), rgba(215, 180, 93, .08));
  color: var(--rn-ink);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  cursor: pointer;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    opacity .2s ease;
}

.rn-video-download[hidden] {
  display: none !important;
}

.rn-video-download:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(255, 225, 132, .72);
  background:
    linear-gradient(135deg, rgba(215, 180, 93, .3), rgba(215, 180, 93, .13));
}

.rn-video-download:disabled {
  opacity: .64;
  cursor: progress;
}

.rn-video-download-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rn-gold);
  color: #111;
  box-shadow: 0 0 14px rgba(215, 180, 93, .5);
  font-size: 14px;
  line-height: 1;
}

.rn-video-download.is-busy .rn-video-download-icon {
  animation: rn-download-pulse .9s ease-in-out infinite alternate;
}

.rn-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rn-stroke);
  border-radius: 50%;
  background: rgba(255, 255, 255, .045);
  color: var(--rn-ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.rn-close:hover {
  transform: rotate(8deg) scale(1.04);
  border-color: rgba(215, 180, 93, .42);
  background: rgba(215, 180, 93, .1);
}

.rn-stage-wrap {
  position: relative;
  z-index: 2;
  padding: 0 clamp(18px, 4vw, 48px);
}

.rn-stage {
  --rn-media-aspect: 1.333333;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 310px;
  max-height: 58vh;
  overflow: hidden;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: clamp(18px, 2.2vw, 28px);
  background:
    radial-gradient(circle at 50% 30%, rgba(215,180,93,.08), transparent 45%),
    #e8e7e2;
  box-shadow:
    0 24px 60px rgba(0,0,0,.38),
    inset 0 0 0 1px rgba(255,255,255,.05);
  contain: layout paint;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.rn-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: none;
  clip-path: inset(0 100% 0 0 round 22px);
  transition:
    opacity .18s linear,
    clip-path 1.665s cubic-bezier(.62, 0, .32, 1);
  backface-visibility: hidden;
  will-change: opacity, clip-path;
}

.rn-frame.is-active {
  z-index: 3;
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0 round 22px);
}

.rn-frame.is-leaving {
  z-index: 2;
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 100% round 22px);
}

.rn-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  filter: saturate(.98) contrast(1.02);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.rn-frame[data-kind="raw"] {
  background:
    radial-gradient(circle at center, rgba(255,255,255,.98), rgba(222,222,217,.95)),
    #e8e7e2;
}

.rn-frame[data-kind="normal"],
.rn-frame[data-kind="layered"] {
  background: #f7f7f4;
}

.rn-stage-badge {
  position: absolute;
  z-index: 7;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(7, 10, 12, .78);
  color: #fff;
  box-shadow: 0 9px 24px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.rn-stage-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rn-gold);
  box-shadow: 0 0 15px var(--rn-gold);
}

.rn-magic-sweep {
  position: absolute;
  z-index: 6;
  top: -10%;
  bottom: -10%;
  left: -13%;
  width: 12%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  background: transparent;
  filter: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.rn-magic-sweep::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      #514900 0%,
      #ffe100 18%,
      #fff76a 36%,
      #fffde0 46%,
      #fff 50%,
      #fffde0 54%,
      #fff76a 64%,
      #ffe100 82%,
      #514900 100%
    );
  box-shadow:
    0 0 0 1px rgba(68, 60, 0, .34),
    0 0 3px rgba(255,255,255,1),
    0 0 9px rgba(255,248,74,1),
    0 0 19px rgba(255,232,0,.96),
    0 0 38px rgba(255,210,0,.68);
}

.rn-magic-sweep::after {
  content: "";
  position: absolute;
  top: 2%;
  bottom: 2%;
  left: 50%;
  width: clamp(38px, 5vw, 76px);
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,229,0,.04) 20%,
      rgba(255,229,0,.16) 38%,
      rgba(255,246,70,.34) 47%,
      rgba(255,255,225,.42) 50%,
      rgba(255,246,70,.34) 53%,
      rgba(255,229,0,.16) 62%,
      rgba(255,229,0,.04) 80%,
      transparent 100%
    );
  filter: blur(6px);
}

.rn-magic-sweep.is-running {
  animation:
    rn-sweep-move 1.665s cubic-bezier(.62, 0, .32, 1) both,
    rn-sweep-fade 1.665s linear both;
}

.rn-ribbons {
  position: absolute;
  z-index: 4;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.rn-ribbons i {
  position: absolute;
  left: -35%;
  width: 32%;
  height: 1px;
  opacity: .0;
  background: linear-gradient(90deg, transparent, rgba(215,180,93,.85), transparent);
  box-shadow: 0 0 14px rgba(215,180,93,.5);
  animation: rn-ribbon 4.8s linear infinite;
  will-change: transform, opacity;
}

.rn-ribbons i:nth-child(1) { top: 24%; animation-delay: .2s; }
.rn-ribbons i:nth-child(2) { top: 48%; animation-delay: 1.55s; }
.rn-ribbons i:nth-child(3) { top: 72%; animation-delay: 2.8s; }

.rn-stage-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.rn-rail-item {
  position: relative;
  padding-top: 10px;
  color: rgba(255,255,255,.34);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  transition: color .35s ease;
}

.rn-rail-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: rgba(255,255,255,.11);
}

.rn-rail-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--rn-gold);
  box-shadow: 0 0 12px rgba(215,180,93,.5);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s ease;
  will-change: transform;
}

.rn-rail-item.is-done,
.rn-rail-item.is-active {
  color: rgba(255,255,255,.9);
}

.rn-rail-item.is-done::after { transform: scaleX(1); }
.rn-rail-item.is-active::after {
  animation: rn-rail-fill 3.105s linear both;
}

.rn-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px clamp(22px, 4vw, 48px) clamp(22px, 3vw, 34px);
}

.rn-nav-group {
  display: flex;
  gap: 9px;
}

.rn-nav {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rn-stroke);
  border-radius: 50%;
  background: rgba(255,255,255,.045);
  color: var(--rn-ink);
  cursor: pointer;
  font-size: 19px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.rn-nav:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(215,180,93,.45);
  background: rgba(215,180,93,.11);
}

.rn-nav:disabled {
  opacity: .28;
  cursor: default;
}

.rn-set-meta {
  min-width: 0;
}

.rn-set-title {
  color: var(--rn-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.rn-set-count {
  margin-top: 4px;
  color: var(--rn-muted);
  font-size: 11px;
}

.rn-done {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(215,180,93,.36);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(215,180,93,.2), rgba(215,180,93,.08));
  color: var(--rn-ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  transition: transform .2s ease, background .2s ease;
}

.rn-done:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(215,180,93,.28), rgba(215,180,93,.12));
}

body.theme-soft #rolixInnovation {
  --rn-ink: #1f2730;
  --rn-muted: rgba(31, 39, 48, .65);
  --rn-panel: rgba(239, 242, 245, .97);
  --rn-panel-2: rgba(252, 253, 254, .97);
  --rn-stroke: rgba(25, 32, 40, .13);
}

body.theme-soft .rn-backdrop {
  background:
    radial-gradient(circle at 16% 14%, rgba(185,151,72,.17), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(105,130,149,.2), transparent 33%),
    rgba(222, 227, 232, .82);
}

body.theme-soft .rn-shell {
  box-shadow: 0 38px 100px rgba(48, 57, 68, .27), inset 0 1px 0 rgba(255,255,255,.8);
}

body.theme-soft .rn-rail-item { color: rgba(31,39,48,.34); }
body.theme-soft .rn-rail-item.is-done,
body.theme-soft .rn-rail-item.is-active { color: rgba(31,39,48,.9); }
body.theme-soft .rn-rail-item::before { background: rgba(31,39,48,.12); }

@keyframes rn-sweep-move {
  from { transform: translate3d(58.333%, 0, 0); }
  to { transform: translate3d(891.667%, 0, 0); }
}

@keyframes rn-sweep-fade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  94% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes rn-ribbon {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  12% { opacity: .7; }
  65% { opacity: .42; }
  100% { transform: translate3d(460%, 0, 0); opacity: 0; }
}

@keyframes rn-rail-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes rn-orbit {
  to { transform: rotate(360deg); }
}

@keyframes rn-download-pulse {
  to {
    transform: translateY(2px);
    box-shadow: 0 0 22px rgba(215, 180, 93, .78);
  }
}

@media (max-width: 720px) {
  #rolixInnovation {
    padding: 8px;
    transition-duration: .28s;
  }
  .rn-backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .rn-backdrop::before,
  .rn-backdrop::after {
    animation: none;
  }
  .rn-shell {
    width: 100%;
    max-height: 98vh;
    border-radius: 24px;
    transition-duration: .38s;
    will-change: auto;
  }
  .rn-header {
    padding: 20px 18px 13px;
    gap: 10px;
  }
  .rn-title { font-size: clamp(25px, 8.5vw, 38px); }
  .rn-subtitle {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.5;
  }
  .rn-close {
    width: 38px;
    height: 38px;
  }
  .rn-header-actions {
    gap: 7px;
  }
  .rn-fullscreen-toggle {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
  }
  .rn-fullscreen-label {
    display: none;
  }
  .rn-video-download {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
  }
  .rn-video-download-label {
    display: none;
  }
  .rn-stage-wrap { padding: 0 12px; }
  .rn-stage {
    min-height: 245px;
    aspect-ratio: var(--rn-media-aspect, 1.333333);
    max-height: calc(100vh - 360px);
    max-height: calc(100svh - 360px);
    border-radius: 18px;
    transform: none;
    backface-visibility: visible;
  }
  .rn-frame {
    clip-path: inset(0 100% 0 0 round 17px);
    transform: none;
    transition:
      opacity .18s linear,
      clip-path 1.665s cubic-bezier(.62, 0, .32, 1);
    backface-visibility: visible;
    will-change: opacity, clip-path;
  }
  .rn-frame.is-active {
    clip-path: inset(0 0 0 0 round 17px);
    transform: none;
  }
  .rn-frame.is-leaving {
    clip-path: inset(0 0 0 100% round 17px);
    transform: none;
  }
  .rn-frame img {
    transform: none;
    backface-visibility: visible;
  }
  .rn-magic-sweep {
    display: block;
  }
  .rn-magic-sweep::before {
    width: 3px;
    box-shadow:
      0 0 0 1px rgba(68, 60, 0, .28),
      0 0 3px rgba(255,255,255,1),
      0 0 7px rgba(255,248,74,.98),
      0 0 15px rgba(255,232,0,.88),
      0 0 28px rgba(255,210,0,.56);
  }
  .rn-magic-sweep::after {
    width: 44px;
    filter: blur(5px);
  }
  .rn-ribbons {
    display: none;
  }
  .rn-stage-badge {
    top: 12px;
    left: 12px;
    backdrop-filter: none;
  }
  .rn-footer {
    grid-template-columns: auto 1fr;
    padding: 16px 16px 20px;
    gap: 12px;
  }
  .rn-done {
    grid-column: 1 / -1;
    width: 100%;
  }
  .rn-nav {
    width: 42px;
    height: 42px;
  }
}

@media (max-height: 690px) and (min-width: 721px) {
  .rn-header { padding-top: 20px; padding-bottom: 12px; }
  .rn-title { font-size: 34px; }
  .rn-subtitle { margin-top: 8px; }
  .rn-stage { max-height: 51vh; min-height: 280px; }
  .rn-footer { padding-top: 14px; padding-bottom: 18px; }
}

@media (max-height: 690px) {
  .rn-shell {
    max-height: 96vh;
    max-height: 96svh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .rn-stage {
    min-height: clamp(160px, 42vh, 245px);
    min-height: clamp(160px, 42svh, 245px);
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rn-backdrop::before,
  .rn-backdrop::after,
  .rn-ribbons i {
    animation: none !important;
  }
  .rn-frame {
    transition-duration: .35s;
  }
  .rn-magic-sweep {
    display: none;
  }
}

body.rolix-innovation-fullscreen {
  overflow: hidden !important;
}

#rolixInnovation.is-fullscreen {
  padding: 0;
  place-items: stretch;
}

#rolixInnovation.is-fullscreen .rn-shell {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  transform: none;
}

#rolixInnovation.is-fullscreen .rn-header {
  flex: 0 0 auto;
  padding-top: max(18px, env(safe-area-inset-top));
  padding-right: max(22px, env(safe-area-inset-right));
  padding-left: max(22px, env(safe-area-inset-left));
}

#rolixInnovation.is-fullscreen .rn-stage-wrap {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

#rolixInnovation.is-fullscreen .rn-stage {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
}

#rolixInnovation.is-fullscreen .rn-stage-rail {
  flex: 0 0 auto;
}

#rolixInnovation.is-fullscreen .rn-footer {
  flex: 0 0 auto;
  padding-bottom: max(18px, env(safe-area-inset-bottom));
}

#rolixInnovation.is-fullscreen .rn-close {
  position: fixed;
  z-index: 12;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  border-color: rgba(215, 180, 93, .5);
  background: rgba(9, 12, 15, .82);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .32), 0 0 0 1px rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.theme-soft #rolixInnovation.is-fullscreen .rn-close {
  background: rgba(247, 249, 251, .92);
  color: #1f2730;
}

@media (max-width: 720px) {
  #rolixInnovation.is-fullscreen .rn-shell {
    width: 100%;
    max-height: none;
    border-radius: 0;
  }
  #rolixInnovation.is-fullscreen .rn-header {
    padding: max(13px, env(safe-area-inset-top)) max(64px, calc(56px + env(safe-area-inset-right))) 10px max(13px, env(safe-area-inset-left));
  }
  #rolixInnovation.is-fullscreen .rn-title {
    font-size: clamp(22px, 7vw, 32px);
  }
  #rolixInnovation.is-fullscreen .rn-subtitle {
    margin-top: 6px;
    line-height: 1.35;
  }
  #rolixInnovation.is-fullscreen .rn-stage-wrap {
    padding: 0 8px;
  }
  #rolixInnovation.is-fullscreen .rn-stage {
    min-height: 0;
    max-height: none;
  }
  #rolixInnovation.is-fullscreen .rn-footer {
    padding: 10px 12px max(12px, env(safe-area-inset-bottom));
  }
}
