:root {
  --ink: #111111;
  --muted: #707070;
  --surface: #fcfcfc;
  --line: #dedede;
  --accent: #dd8560;
  --creative-green: #d6ff2f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--ink);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

.app {
  width: 100%;
  max-width: 393px;
  margin: 0 auto;
  min-height: 100dvh;
  background: #000;
  overflow-x: hidden;
}

.topbar {
  height: 46px;
  background: #000;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.brand {
  margin: 0;
  color: #fcfcfc;
  font-family: "Sawarabi Mincho", serif;
  letter-spacing: 1.4px;
  font-size: 14px;
  opacity: 0.95;
}

.topbar-back {
  position: absolute;
  left: 8px;
  top: 7px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(214, 255, 47, 0.28);
  background: #111;
  color: #f5f5f5;
  font-size: 20px;
  line-height: 1;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.topbar-back.hidden {
  display: none;
}

.progress-wrap {
  height: 5px;
  background: #111;
  border-top: 1px solid rgba(214, 255, 47, 0.2);
  border-bottom: 1px solid rgba(214, 255, 47, 0.12);
}

.progress-wrap.hidden {
  display: none;
}

.progress-bar {
  height: 5px;
  width: 0%;
  background: linear-gradient(90deg, #b8ff1d 0%, #d6ff2f 45%, #edff74 100%);
  box-shadow:
    0 0 8px rgba(214, 255, 47, 0.75),
    0 0 14px rgba(214, 255, 47, 0.45);
  transition: width 260ms ease;
}

.screen {
  padding: 10px 9px 24px;
  background: #000;
  height: calc(100dvh - 51px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
}

.screen.is-step-animating {
  pointer-events: none;
}

.screen.effect-mode {
  overflow: hidden;
}

.panel {
  min-height: calc(100dvh - 110px);
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.q-title {
  margin: 12px 0 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: clamp(22px, 6.2vw, 27px);
  font-weight: 700;
  line-height: 1.18;
  color: #fcfcfc;
  text-wrap: balance;
  word-break: normal;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.q-title-left {
  text-align: left;
  text-transform: none;
  letter-spacing: 0.2px;
  line-height: 1.18;
  margin: 8px 2px 14px;
  max-width: 20ch;
}

.q-sub {
  margin: 8px 0 14px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-wrap: pretty;
  line-height: 1.35;
}

.q-sub-center {
  margin-top: -8px;
  margin-bottom: 8px;
}

.effect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.effect-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 1px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}

.effect-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.panel-effect {
  background: #000;
  border-radius: 12px;
  padding: 10px 10px 10px;
  position: relative;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
}

.panel-effect .q-title {
  color: #fcfcfc;
  margin: 2px 0 4px;
}

.effect-card {
  border: 2px solid #2b2b2b;
  border-radius: 12px;
  overflow: hidden;
  background: #0d0d0d;
  padding: 0;
  text-align: left;
  position: relative;
}

.effect-card img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  display: block;
}

.effect-card span {
  display: block;
  padding: 9px 10px 10px;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: #fcfcfc;
}

.effect-card.active {
  border-color: var(--creative-green);
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.55) inset,
    0 0 10px rgba(214, 255, 47, 0.75),
    0 0 20px rgba(214, 255, 47, 0.5);
}

.hair-color-swatches {
  position: absolute;
  right: 9px;
  bottom: 44px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 12, 18, 0.74);
  backdrop-filter: blur(3px);
}

.hair-color-swatch {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--swatch, #cccccc);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
}

.continue-btn,
.secondary-btn {
  width: 100%;
  height: 52px;
  margin-top: 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-family: "Tenor Sans", sans-serif;
  font-size: 13px;
}

.continue-btn {
  border: 2px solid var(--creative-green);
  background: var(--creative-green);
  color: #000;
  font-weight: 700;
}

.continue-btn:disabled {
  opacity: 0.5;
}

.continue-btn-pink {
  background: #ff007f;
  border-color: #ff007f;
  color: #fff;
}

.effect-continue {
  position: relative;
  bottom: auto;
  margin-top: 0;
  z-index: 5;
  border-radius: 18px;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(214, 255, 47, 0.4) inset;
}

.choice-list {
  display: grid;
  gap: 9px;
}

.choice-btn {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  text-align: left;
  padding: 12px 14px;
  font-size: 14px;
}

.choice-btn:hover {
  border-color: #000;
}

.panel-age {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-height: 0;
  height: 100%;
}

.age-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.age-option {
  width: 100%;
  min-height: 62px;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  background: #131313;
  color: #f4f4f4;
  text-align: left;
  padding: 0 18px;
  font-size: 16px;
  letter-spacing: 0.2px;
  opacity: 0;
  transform: translateY(8px);
  animation: ageIn 260ms ease forwards;
}

.age-option.active {
  border-color: var(--creative-green);
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.45) inset,
    0 0 14px rgba(214, 255, 47, 0.22);
}

.panel-vibe {
  padding-bottom: 10px;
}

.panel-emoji {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}

.panel-selfie {
  min-height: 100%;
  display: grid;
  grid-template-rows: 252px auto auto auto;
  gap: 6px;
  align-content: start;
}

.selfie-cloud {
  position: relative;
  height: 244px;
  overflow: hidden;
}

.selfie-mini {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  background: #0f0f0f;
  opacity: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: filter, box-shadow, border-color;
  transition:
    filter 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
  animation: selfieCardEnter 300ms ease forwards;
}

.selfie-mini.is-dealing {
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
}

.selfie-mini-frame {
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: selfieWaveSmooth 3600ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  animation-delay: var(--waveDelay, 0s);
}

.selfie-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  display: block;
  transform: translateZ(0) scale(1.16);
  backface-visibility: hidden;
  will-change: transform, filter;
  transition: transform 300ms ease, filter 260ms ease;
  border-radius: 20px;
}

.selfie-mini.is-focus {
  border-color: rgba(214, 255, 47, 0.9);
  box-shadow: 0 0 14px rgba(214, 255, 47, 0.52);
  filter: saturate(1.06) brightness(1.06);
}

.selfie-mini.is-focus img {
  transform: scale(1.2);
}

/* Per-slot vertical framing tweaks to keep faces visible. */
.selfie-slot-1 img { object-position: center 14%; }
.selfie-slot-2 img {
  object-position: center 4%;
  transform: translateZ(0) scale(1.08);
}
.selfie-slot-5 img { object-position: center 18%; }
.selfie-slot-7 img { object-position: center 15%; }

.selfie-slot-2.is-focus img {
  transform: scale(1.12);
}

.selfie-center-wrap {
  margin-top: -26px;
  text-align: center;
}

.selfie-center {
  width: 154px;
  height: 154px;
  margin: 0 auto;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.selfie-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selfie-sign {
  margin: 6px 0 0;
  color: #e7f5b9;
  font-family: "Sawarabi Mincho", serif;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.selfie-copy {
  text-align: center;
  padding: 0 18px;
}

.selfie-copy h2 {
  margin: 2px 0 6px;
  color: #f5f5f5;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.23;
  font-weight: 700;
  text-wrap: balance;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.selfie-trigger {
  color: var(--creative-green);
  text-shadow: 0 0 10px rgba(214, 255, 47, 0.3);
  white-space: nowrap;
}

.selfie-copy p {
  margin: 0;
  color: #cfcfcf;
  font-size: 11px;
  line-height: 1.35;
  text-wrap: pretty;
}

.panel-selfie .continue-btn {
  margin-top: 4px;
}

/* Two semicircle slot map: 4 top + 4 bottom */
.selfie-slot-1 { left: 16%; top: 30%; transform: translate(-50%, -50%) rotate(-22deg); }
.selfie-slot-2 { left: 37%; top: 24%; transform: translate(-50%, -50%) rotate(-8deg); }
.selfie-slot-3 { left: 58%; top: 24%; transform: translate(-50%, -50%) rotate(8deg); }
.selfie-slot-4 { left: 79%; top: 30%; transform: translate(-50%, -50%) rotate(22deg); }
.selfie-slot-5 { left: 13%; top: 68%; transform: translate(-50%, -50%) rotate(-18deg); }
.selfie-slot-6 { left: 36%; top: 62%; transform: translate(-50%, -50%) rotate(-6deg); }
.selfie-slot-7 { left: 60%; top: 62%; transform: translate(-50%, -50%) rotate(6deg); }
.selfie-slot-8 { left: 83%; top: 68%; transform: translate(-50%, -50%) rotate(18deg); }

.emoji-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.emoji-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.emoji-list {
  display: grid;
  gap: 10px;
  padding-right: 1px;
}

.emoji-option {
  width: 100%;
  min-height: 62px;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  background: #131313;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(10px);
  animation: emojiIn 280ms ease forwards;
}

.emoji-option.active {
  border-color: var(--creative-green);
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.45) inset,
    0 0 14px rgba(214, 255, 47, 0.22);
}

.emoji-icon {
  font-size: 24px;
  line-height: 1;
  width: 28px;
  text-align: center;
}

.emoji-text {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: #f5f5f5;
}

.panel-glam-list {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}

.glam-list-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.glam-list-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.glam-list {
  display: grid;
  gap: 10px;
  padding-right: 1px;
}

.glam-option {
  width: 100%;
  min-height: 62px;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  background: #131313;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(10px);
  animation: emojiIn 280ms ease forwards;
  transition:
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 180ms ease;
}

.glam-option:active {
  transform: translateY(1px);
}

.glam-option.active {
  border-color: var(--creative-green);
  background: #131313;
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.45) inset,
    0 0 14px rgba(214, 255, 47, 0.22);
}

.glam-emoji {
  font-size: 24px;
  line-height: 1;
  width: 30px;
  text-align: center;
}

.glam-text {
  font-size: 20px;
  line-height: 1.14;
  letter-spacing: 0.1px;
  color: #f5f5f5;
}

.panel-image-cards {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-height: 0;
  height: 100%;
}

.panel-look-stack {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-height: 0;
  height: 100%;
}

.look-stack-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.look-stack-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.look-stack-track {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding-bottom: 2px;
}

.look-stack-card {
  width: min(48vw, 210px);
  border: 2px solid #2b2b2b;
  border-radius: 18px;
  overflow: hidden;
  background: #0d0d0d;
}

.look-stack-card img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  display: block;
}

.look-stack-card span {
  display: block;
  min-height: 42px;
  padding: 8px 12px 10px;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.4px;
  color: #fcfcfc;
  background: #0d0d0d;
}

.look-stack-plus {
  font-size: 44px;
  line-height: 1;
  color: #f5f5f5;
  margin: 2px 0 0;
}

.panel-brand-grid {
  padding-bottom: 10px;
}

.panel-look-deck {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  align-content: start;
}

.panel-percentage-figure {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  position: relative;
}

.panel-apple-choice {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.panel-ai-solution {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 7px;
}

.panel-how-it-works {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 6px;
  height: 100%;
}

.panel-trust-media {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  align-content: start;
}

.trust-card {
  border-radius: 18px;
  border: 1px solid rgba(214, 255, 47, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 255, 47, 0.16) 0%, rgba(214, 255, 47, 0.05) 36%, rgba(12, 12, 12, 0.96) 100%),
    #101010;
  padding: 18px 14px 14px;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(214, 255, 47, 0.14),
    0 16px 30px rgba(0, 0, 0, 0.5);
}

.trust-rocket {
  font-size: 58px;
  line-height: 1;
  filter: drop-shadow(0 0 14px rgba(214, 255, 47, 0.42));
}

.trust-count {
  margin-top: 10px;
  color: #f6f6f6;
  font-size: 46px;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.05;
}

.trust-sub {
  margin: 8px 4px 2px;
  color: #d8d8d8;
  font-size: 22px;
  line-height: 1.24;
}

.trust-media-title {
  margin: 0;
  text-align: center;
  color: #bebebe;
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.trust-media-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
  padding-top: 0;
}

.trust-media-logo-card {
  min-height: 78px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #f4f4f4;
  display: grid;
  place-items: center;
  padding: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
}

.trust-media-logo-card img {
  width: 100%;
  height: 36px;
  object-fit: contain;
  filter: none;
}

.trust-media-bcefw {
  background: #f4f4f4;
}

.trust-media-wordmark {
  display: grid;
  gap: 2px;
  text-align: center;
}

.trust-media-wordmark-main {
  color: #111;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1.6px;
  font-weight: 700;
}

.trust-media-wordmark-sub {
  color: rgba(17, 17, 17, 0.72);
  font-size: 9px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.q-title-how {
  text-transform: none;
  letter-spacing: 0.1px;
  font-size: clamp(20px, 5.2vw, 22px);
  line-height: 1.18;
  text-align: left;
  margin: 4px 2px 0;
}

.how-sub {
  margin: 0 2px 2px;
  color: #cfcfcf;
  font-size: 11px;
}

.how-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 80%;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 0;
  scrollbar-width: none;
  min-height: 0;
  align-items: stretch;
}

.how-carousel::-webkit-scrollbar {
  display: none;
}

.how-slide {
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  background: #121212;
  border: 1px solid #272727;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-self: stretch;
  height: 100%;
}

.how-hero {
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

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

.how-chip {
  position: absolute;
  top: 8px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
}

.how-chip-left {
  left: 8px;
}

.how-chip-right {
  right: 8px;
}

.how-overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
}

.how-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.08;
  font-family: "Sawarabi Mincho", serif;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.62);
}

.how-overlay p {
  margin: 4px 0 0;
  color: #e5e5e5;
  font-size: 11px;
  letter-spacing: 1.1px;
}

.how-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 7px;
  background: #eef2e6;
}

.how-item {
  aspect-ratio: 1 / 1;
  border: 1px solid #dfdfdf;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
}

.how-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.how-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-top: 0;
}

.how-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 180ms ease, background 180ms ease;
}

.how-dot.active {
  width: 16px;
  background: var(--creative-green);
}

.panel-how-it-works .effect-continue {
  margin-top: 2px;
}

.q-title-ai {
  text-transform: none;
  letter-spacing: 0.15px;
  font-size: clamp(20px, 5.2vw, 22px);
  line-height: 1.18;
  margin: 6px auto 0;
  text-align: center;
  max-width: 320px;
}

.ai-sub {
  margin: 0 2px 2px;
  color: #cecece;
  font-size: 14px;
  line-height: 1.35;
}

.ai-gif-wrap {
  position: relative;
  width: min(74vw, 268px);
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 14, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 10px 22px rgba(0, 0, 0, 0.45);
}

.ai-gif-wrap img,
.ai-gif-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ai-gif-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.32) 70%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.ai-gif-tag {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 1px;
  color: #101010;
  font-weight: 700;
  background: var(--creative-green);
}

.ai-points {
  display: grid;
  gap: 6px;
  align-content: start;
}

.ai-point {
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(214, 255, 47, 0.24);
  background: rgba(12, 12, 12, 0.74);
  color: #efefef;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: aiPointIn 260ms ease forwards;
}

.ai-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--creative-green);
  box-shadow: 0 0 10px rgba(214, 255, 47, 0.72);
}

.q-title-apple {
  text-transform: none;
  letter-spacing: 0.15px;
  font-size: clamp(20px, 5.2vw, 22px);
  line-height: 1.18;
  margin: 12px auto 10px;
  max-width: 320px;
  text-wrap: balance;
  position: relative;
  z-index: 3;
}

.apple-hero {
  position: absolute;
  right: -8px;
  bottom: 62px;
  width: min(58vw, 244px);
  height: min(66vh, 430px);
  border-radius: 18px 0 0 18px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  background: rgba(10, 10, 10, 0.32);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 12px 28px rgba(0, 0, 0, 0.42);
  transform: translate3d(24px, 0, 0) scale(0.96);
  opacity: 0;
  animation: appleHeroIn 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 120ms;
}

.apple-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: brightness(0.88) saturate(0.96);
}

.apple-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.24) 35%,
    rgba(0, 0, 0, 0.08) 70%,
    rgba(0, 0, 0, 0.04) 100%
  );
}

.apple-choice-list {
  display: grid;
  gap: 10px;
  align-content: start;
  position: relative;
  z-index: 3;
  width: min(64%, 260px);
}

.apple-choice-item {
  min-height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  opacity: 0;
  transform: translateY(8px);
  animation: appleChoiceIn 280ms ease forwards;
  transition:
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 160ms ease,
    background 180ms ease;
}

.apple-choice-item:active {
  transform: translateY(1px);
}

.apple-choice-text {
  color: #f6f6f6;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.apple-choice-indicator {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1.8px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.apple-choice-item.active {
  border-color: rgba(214, 255, 47, 0.65);
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.35) inset,
    0 0 16px rgba(214, 255, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(214, 255, 47, 0.12), rgba(214, 255, 47, 0.04)),
    rgba(18, 18, 18, 0.88);
}

.apple-choice-item.active .apple-choice-indicator {
  border-color: var(--creative-green);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(214, 255, 47, 0.7) 0%,
    rgba(214, 255, 47, 0.24) 58%,
    transparent 100%
  );
}

.q-title-figure {
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: clamp(20px, 5.2vw, 22px);
  line-height: 1.18;
  margin-top: 8px;
  margin-bottom: 8px;
}

.percentage-layout {
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.percentage-options {
  display: grid;
  gap: 10px;
  width: min(50%, 196px);
  align-content: start;
  position: relative;
  z-index: 3;
  padding-top: 8px;
}

.percentage-option {
  min-height: 56px;
  border: 1px solid #2c2c2c;
  border-radius: 16px;
  background: rgba(15, 15, 15, 0.82);
  color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.percentage-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #9a9a9a;
}

.percentage-option.active {
  border-color: var(--creative-green);
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.4) inset,
    0 0 12px rgba(214, 255, 47, 0.2);
}

.percentage-option.active .percentage-dot {
  border-color: var(--creative-green);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(214, 255, 47, 0.65) 0%,
    rgba(214, 255, 47, 0.25) 60%,
    transparent 100%
  );
}

.percentage-figure-wrap {
  position: absolute;
  right: -86px;
  bottom: -2px;
  width: min(84vw, 362px);
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  animation: figureFadeIn 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 120ms;
}

.percentage-figure-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% center;
  filter: brightness(0.62) saturate(0.92) contrast(1.04);
  transform: translate3d(18px, 0, 0) scale(1.04);
  animation: figureImageIn 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 120ms;
}

.percentage-figure-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.42) 34%,
    rgba(0, 0, 0, 0.18) 60%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.q-title-look-deck {
  font-size: clamp(20px, 5.2vw, 22px);
  line-height: 1.18;
  letter-spacing: 0.2px;
  text-transform: none;
}

.keep-together {
  white-space: nowrap;
}

.creators-sub,
.how-sub,
.trust-sub,
.question-item {
  text-wrap: pretty;
}

.look-deck-stage {
  position: relative;
  min-height: 360px;
  margin-top: 8px;
}

.look-deck-card {
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(35vw, 156px);
  border-radius: 14px;
  overflow: hidden;
  background: #0f0f0f;
  border: 2px solid rgba(214, 255, 47, 0.35);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.55);
  transform-origin: center center;
  will-change: transform, opacity;
}

.look-deck-card img {
  width: 100%;
  aspect-ratio: 0.73 / 1;
  object-fit: cover;
  display: block;
}

.look-deck-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 66px;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  background: var(--creative-green);
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25px;
  position: absolute;
  right: -10px;
  top: 12px;
  z-index: 8;
  box-shadow:
    0 0 0 2px #111,
    0 6px 16px rgba(0, 0, 0, 0.38);
}

.look-deck-card-1 {
  transform: translate(-138%, -50%) rotate(-15deg) scale(0.92);
  z-index: 1;
  animation:
    lookDealLeft 520ms cubic-bezier(0.22, 1, 0.36, 1) both,
    lookFloatLeft 3400ms ease-in-out infinite;
  animation-delay: 40ms;
}

.look-deck-card-2 {
  transform: translate(-50%, -52%) rotate(0deg) scale(1.1);
  z-index: 3;
  box-shadow:
    0 0 0 2px rgba(214, 255, 47, 0.45),
    0 0 22px rgba(214, 255, 47, 0.34),
    0 14px 30px rgba(0, 0, 0, 0.6);
  animation:
    lookDealCenter 560ms cubic-bezier(0.22, 1, 0.36, 1) both,
    lookFloatCenter 3200ms ease-in-out infinite,
    lookGlowPulse 2200ms ease-in-out infinite;
  animation-delay: 120ms;
}

.look-deck-card-3 {
  transform: translate(34%, -50%) rotate(15deg) scale(0.92);
  z-index: 2;
  animation:
    lookDealRight 600ms cubic-bezier(0.22, 1, 0.36, 1) both,
    lookFloatRight 3600ms ease-in-out infinite;
  animation-delay: 200ms;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.brand-card {
  border: 1px solid #2b2b2b;
  border-radius: 16px;
  background: #111;
  min-height: 168px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 14px 10px 12px;
  transition:
    border-color 180ms ease,
    box-shadow 200ms ease,
    transform 160ms ease;
}

.brand-card:active {
  transform: translateY(1px);
}

.brand-card img {
  width: 100%;
  max-width: 104px;
  height: 44px;
  object-fit: contain;
  filter: none;
  border-radius: 0;
}

.brand-logo-pad {
  width: 132px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  background: #f7f7f7;
  border: 1px solid #dcdcdc;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.08),
    0 3px 12px rgba(0, 0, 0, 0.3);
}

.brand-wordmark {
  color: #111;
  font-size: 33px;
  line-height: 1;
  letter-spacing: 1.8px;
  font-weight: 500;
}

.brand-wordmark-mango {
  letter-spacing: 2.2px;
}

.brand-name {
  color: #f4f4f4;
  font-size: 13px;
  letter-spacing: 0.3px;
  line-height: 1.1;
}

.brand-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid #8a8a8a;
  background: #101010;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.brand-checkbox.checked {
  border-color: var(--creative-green);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(214, 255, 47, 0.5) 0%,
    rgba(214, 255, 47, 0.16) 58%,
    rgba(214, 255, 47, 0.04) 100%
  );
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.4) inset,
    0 0 10px rgba(214, 255, 47, 0.18);
}

.brand-card.active {
  border-color: var(--creative-green);
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.42) inset,
    0 0 12px rgba(214, 255, 47, 0.2);
}

.image-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}

.image-card {
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  padding: 0;
  text-align: left;
  transition:
    border-color 200ms ease,
    box-shadow 220ms ease,
    transform 200ms ease;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  display: block;
}

.image-card-label {
  display: block;
  padding: 8px 12px 10px;
  color: #f7f7f7;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.4px;
  min-height: 40px;
  background: #0d0d0d;
}

.image-card.active {
  border-color: var(--creative-green);
  background: #0d0d0d;
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.45) inset,
    0 0 14px rgba(214, 255, 47, 0.22);
}

.color-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.color-item {
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  font-size: 14px;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.color-item.active {
  border-color: #000;
}

.panel-framing {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}

.framing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}

.framing-card {
  border: 1px solid #2b2b2b;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  padding: 0;
  text-align: left;
}

.framing-card img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  display: block;
}

.framing-card span {
  display: block;
  padding: 10px 12px;
  text-align: center;
  color: #f2f2f2;
  font-size: 12px;
}

.framing-card.active {
  border-color: var(--creative-green);
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.45) inset,
    0 0 14px rgba(214, 255, 47, 0.22);
}

.panel-creators {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
}

.creators-sub {
  margin: -2px 2px 0;
  color: #dfe3d7;
  font-size: 13px;
  line-height: 1.35;
}

.creators-pairs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 54%;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  align-items: start;
  scrollbar-width: none;
}

.creators-pairs::-webkit-scrollbar {
  display: none;
}

.creator-pair {
  scroll-snap-align: center;
  display: grid;
  grid-template-rows: auto auto;
  gap: 8px;
}

.creator-card {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(214, 255, 47, 0.24);
  position: relative;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.26);
  contain: layout paint;
}

.creator-card img {
  width: 100%;
  aspect-ratio: 0.68 / 1;
  object-fit: cover;
  display: block;
}

.creator-card p {
  margin: 0;
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  color: #f6f6f6;
  font-size: 13px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(214, 255, 47, 0.18);
  background: rgba(12, 12, 12, 0.72);
  border-radius: 10px;
  padding: 6px 8px;
}

.creator-bubble {
  min-height: 62px;
  border-radius: 16px;
  border: 1px solid rgba(214, 255, 47, 0.24);
  background: linear-gradient(180deg, #141414 0%, #111111 100%);
  color: #f4f4f4;
  font-size: 12px;
  line-height: 1.3;
  padding: 9px 11px;
}

.panel-question-list {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}

.question-list {
  display: grid;
  gap: 9px;
  align-content: start;
}

.question-item {
  min-height: 58px;
  border-radius: 14px;
  border: 1px solid #2b2b2b;
  background: #141414;
  color: #f3f3f3;
  text-align: left;
  padding: 0 16px;
  font-size: 15px;
}

.question-item.active {
  border-color: var(--creative-green);
  background: #161616;
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.4) inset,
    0 0 10px rgba(214, 255, 47, 0.18);
}

.panel-upload {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  gap: 12px;
}

.upload-title {
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: clamp(20px, 6.2vw, 24px);
  line-height: 1.12;
  margin: 4px 0 2px;
  max-width: none;
}

.panel-upload .upload-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: min(74vw, 292px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto;
  border: 1.5px dashed rgba(235, 235, 235, 0.34);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #121318 0%, #0e0f12 100%);
  color: #b7bac1;
  letter-spacing: 0;
  font-size: 38px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 12px 26px rgba(0, 0, 0, 0.3);
}

.upload-shell input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.upload-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hidden {
  display: none;
}

.secondary-btn {
  border: 1px solid var(--line);
  color: #111;
  background: #fff;
}

.upload-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  z-index: 4;
}

.upload-actions .continue-btn,
.upload-actions .secondary-btn {
  margin-top: 0;
  height: 58px;
  border-radius: 18px;
  letter-spacing: 0.4px;
  font-size: 15px;
  text-transform: none;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.upload-white {
  background: #f7f7f8;
  color: #171717;
  border-color: #f7f7f8;
}

.upload-green {
  background: linear-gradient(180deg, #dfff53 0%, var(--creative-green) 100%);
  border-color: var(--creative-green);
  color: #121212;
  font-weight: 700;
  box-shadow:
    0 8px 18px rgba(214, 255, 47, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.upload-pink {
  background: linear-gradient(180deg, #ff1693 0%, #ff0088 100%);
  border-color: #ff0a8c;
  color: #fff;
  box-shadow:
    0 8px 18px rgba(255, 10, 140, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.upload-skip {
  border: none;
  background: transparent;
  color: #e7e7ea;
  font-size: 15px;
  letter-spacing: 0.1px;
  text-align: center;
  padding: 2px 0 0;
}

.upload-examples {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, #17191f 0%, #111218 100%);
  padding: 12px 12px 14px;
}

.upload-examples-title {
  margin: 0 0 12px;
  color: #f0f0f3;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.upload-example-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.upload-example-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.upload-examples-note {
  margin: 12px 4px 0;
  color: #c8cbd3;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  text-wrap: pretty;
}

.panel-reel-prompt {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}

.reel-title {
  text-transform: none;
  letter-spacing: 0.15px;
  margin: 4px 2px 0;
  text-align: left;
  max-width: 14ch;
}

.reel-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(214, 255, 47, 0.22);
  background: #0f0f0f;
  position: relative;
  min-height: 0;
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1;
}

@supports not (aspect-ratio: 1 / 1) {
  .reel-media {
    height: 0;
    padding-top: 100%;
  }
  .reel-media > img,
  .reel-media > video,
  .reel-media > .reel-media-loader {
    position: absolute;
    inset: 0;
  }
}

.reel-media img,
.reel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-media-video video {
  opacity: 0;
  transition: opacity 220ms ease;
}

.reel-media-video.is-ready video {
  opacity: 1;
}

.reel-media-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(10, 10, 10, 0.64);
  color: #e9ece2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: opacity 200ms ease;
}

.reel-media-video:not(.is-loading) .reel-media-loader {
  opacity: 0;
  pointer-events: none;
}

.reel-loader-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--creative-green);
  box-shadow: 0 0 0 0 rgba(214, 255, 47, 0.62);
  animation: reelLoaderPulse 1.15s ease-in-out infinite;
}

@keyframes reelLoaderPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 255, 47, 0.62);
    transform: scale(0.9);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(214, 255, 47, 0);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 255, 47, 0);
    transform: scale(0.9);
  }
}

.reel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.reel-btn {
  height: 58px;
  border-radius: 18px;
  border: 1px solid #2b2b2b;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

.reel-btn-muted {
  background: #141414;
  color: #f2f2f2;
}

.reel-btn-primary {
  border-color: var(--creative-green);
  background: linear-gradient(180deg, #dfff53 0%, var(--creative-green) 100%);
  color: #111;
}

.reel-btn.active {
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.5) inset,
    0 0 14px rgba(214, 255, 47, 0.22);
}

.panel-processing-modern {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 10px;
}

.processing-title {
  text-transform: none;
  letter-spacing: 0.2px;
  line-height: 1.14;
  margin: 6px 2px 0;
}

.processing-sub {
  margin: -2px 2px 2px;
  color: #cdd1c7;
  font-size: 14px;
  line-height: 1.32;
  text-align: center;
  text-wrap: pretty;
}

.processing-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(214, 255, 47, 0.2);
  background: #101010;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.processing-media img,
.processing-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.processing-checks {
  display: grid;
  gap: 10px;
  align-content: start;
}

.processing-row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  color: #f3f3f3;
  font-size: 15px;
}

.processing-track {
  margin-top: 5px;
  height: 12px;
  border-radius: 999px;
  background: #262626;
  overflow: hidden;
}

.processing-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #b8ff1d 0%, #d6ff2f 55%, #ebff79 100%);
  transition: width 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.panel-paywall {
  min-height: 100%;
  display: grid;
  gap: 12px;
  align-content: start;
  padding-bottom: 24px;
  overflow-x: hidden;
}

.paywall-offer {
  border-radius: 14px;
  background: linear-gradient(180deg, #dfff53 0%, var(--creative-green) 100%);
  color: #111;
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}

.paywall-offer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.paywall-offer-chip {
  margin: 0 auto;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: linear-gradient(180deg, #ff49ab 0%, #ff0d8e 100%);
  color: #fff;
  padding: 0 18px;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.paywall-hero {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(214, 255, 47, 0.24);
  background: #121212;
  position: relative;
}

.paywall-hero img {
  width: 100%;
  aspect-ratio: 0.96 / 1;
  object-fit: cover;
  display: block;
}

.paywall-hero-copy {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  text-align: center;
  z-index: 2;
}

.paywall-hero-text-backdrop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(
    180deg,
    rgba(4, 6, 10, 0) 0%,
    rgba(4, 6, 10, 0.58) 42%,
    rgba(4, 6, 10, 0.78) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.paywall-hero-copy p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 1px;
  color: #dce5c2;
}

.paywall-hero-copy h2 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  text-wrap: balance;
  text-align: center;
}

.paywall-plans {
  display: grid;
  gap: 10px;
}

.plan-card {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #5c5c5c;
  background: #0f0f0f;
  color: #f4f4f4;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.plan-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.05;
}

.plan-card h3 em {
  margin-left: 8px;
  font-style: normal;
  font-size: 10px;
  color: #111;
  background: var(--creative-green);
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: middle;
}

.plan-card p {
  margin: 4px 0 0;
  color: #f0f0f0;
  font-size: 15px;
}

.plan-card p s {
  color: #8f8f8f;
}

.plan-card strong {
  font-size: 16px;
  color: #111;
  background: #c5c5c5;
  border-radius: 12px;
  padding: 6px 10px;
}

.plan-card strong span {
  font-size: 13px;
}

.plan-card.active {
  border-color: var(--creative-green);
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.4) inset,
    0 0 18px rgba(214, 255, 47, 0.16);
}

.plan-card.active strong {
  background: linear-gradient(180deg, #e5ff8a 0%, var(--creative-green) 100%);
}

.paywall-cta,
.paywall-alt {
  margin-top: 0;
  height: 56px;
  border-radius: 16px;
  font-size: 15px;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0.2px;
}

.paywall-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.paywall-cta img {
  height: 24px;
  width: auto;
  filter: brightness(0) saturate(100%);
}

.paywall-wallet-fallback {
  font-weight: 700;
  letter-spacing: 0.1px;
}

.paywall-cta.is-loading,
.paywall-alt.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.paywall-or {
  margin: -4px 0 -2px;
  text-align: center;
  color: #bcbcbc;
  font-size: 20px;
  letter-spacing: 1.2px;
  font-weight: 600;
  text-transform: uppercase;
}

.paywall-alt {
  border: 1px solid rgba(214, 255, 47, 0.28);
  background: #111;
  color: #f5f5f5;
}

.paywall-methods {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 6px 0 0;
}

.method-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 8px;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(25, 31, 46, 0.72);
}

.method-logo img {
  width: auto;
  max-width: 100%;
  height: 17px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.method-logo-mastercard img {
  height: 18px;
  filter: none;
}

.method-logo-amex img {
  height: 20px;
  filter: none;
}

.method-logo-paypal img {
  height: 18px;
  filter: none;
}

.method-logo-visa img {
  height: 18px;
  filter: invert(19%) sepia(77%) saturate(1992%) hue-rotate(208deg) brightness(84%) contrast(96%);
}

.paywall-methods-note {
  margin: 6px 0 0;
  text-align: center;
  color: #9ca3b2;
  font-size: 11px;
  letter-spacing: 0.2px;
}

.paywall-community,
.paywall-brands,
.paywall-unlock,
.paywall-guarantee,
.paywall-faq {
  border: 1px solid rgba(214, 255, 47, 0.2);
  border-radius: 16px;
  background: #121212;
  padding: 12px;
}

.paywall-brands {
  background:
    radial-gradient(120% 120% at 15% 10%, rgba(214, 255, 47, 0.12) 0%, rgba(214, 255, 47, 0) 46%),
    linear-gradient(180deg, #171f2e 0%, #11161f 100%);
  overflow: hidden;
}

.paywall-brands h3 {
  margin: 8px 0 0;
  color: #f6f8ff;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1.12;
  text-wrap: balance;
}

.brands-trigger {
  color: var(--creative-green);
  text-shadow: 0 0 10px rgba(214, 255, 47, 0.28);
}

.paywall-brands p {
  margin: 6px 0 10px;
  color: #cdd3df;
  text-align: center;
  font-size: 13px;
  line-height: 1.35;
}

.brands-value-row {
  margin: 0 auto 8px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.brands-value-row span {
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(214, 255, 47, 0.25);
  background: rgba(214, 255, 47, 0.08);
  color: #e8f8ba;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brands-deck {
  position: relative;
  padding: 8px 0 12px;
}

.brands-stage {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto;
  touch-action: pan-y;
  user-select: none;
}

.brands-look-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  max-width: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(126, 176, 255, 0.36);
  background: var(--look-bg, #f4f6fa);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(27, 66, 141, 0.34);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.9);
  transition:
    transform 380ms cubic-bezier(0.22, 0.72, 0.2, 1),
    opacity 280ms ease,
    filter 280ms ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.brands-look-slide.is-active {
  z-index: 4;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: brightness(1);
}

.brands-look-slide.is-next {
  z-index: 3;
  opacity: 0.96;
  transform: translate3d(22px, -2px, 0) scale(0.95);
  filter: brightness(0.94);
}

.brands-look-slide.is-back {
  z-index: 2;
  opacity: 0.84;
  transform: translate3d(38px, -4px, 0) scale(0.91);
  filter: brightness(0.9);
}

.brands-look-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--look-bg, #ffffff);
  padding: 0;
  display: block;
  opacity: 1;
  mix-blend-mode: normal;
}

.brands-look-generated img {
  opacity: 0.96;
  filter: contrast(1.02) saturate(1.03);
}

.brands-chip {
  position: absolute;
  left: 10px;
  top: 10px;
  min-height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(19, 33, 69, 0.72);
  color: #eaf5ff;
  font-size: 10px;
  letter-spacing: 0.7px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brands-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.brands-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.brands-dots span.active {
  width: 16px;
  background: var(--creative-green);
}

.brands-partner-strip {
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid rgba(138, 168, 255, 0.25);
  background: rgba(46, 71, 132, 0.56);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.brands-partner-strip p {
  margin: 12px 10px 10px;
  color: #dae6ff;
  font-size: 13px;
  text-align: center;
}

.brands-logo-marquee {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 2px 0 14px;
}

.brands-logo-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  max-width: none;
  contain: layout paint;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: brands-logo-marquee 30s linear infinite;
}

.brands-logo-track img {
  width: 120px;
  max-width: 120px;
  height: 24px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1) contrast(1.08);
  flex: 0 0 auto;
  display: block;
}

@keyframes brands-logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 380px) {
  .brands-logo-track {
    gap: 16px;
    animation-duration: 26s;
  }
  .brands-logo-track img {
    width: 108px;
    max-width: 108px;
    height: 22px;
  }
}

.paywall-community h3,
.paywall-unlock h3,
.paywall-guarantee h3,
.paywall-faq h3 {
  margin: 0 0 8px;
  color: #f8f8f8;
  font-size: 22px;
}

.paywall-unlock {
  background:
    radial-gradient(130% 120% at 18% 0%, rgba(214, 255, 47, 0.1) 0%, rgba(214, 255, 47, 0) 44%),
    #12161f;
}

.paywall-unlock h3 {
  margin-bottom: 6px;
  text-align: center;
  font-size: 21px;
  line-height: 1.05;
}

.paywall-unlock > p {
  margin: 0 0 10px;
  text-align: center;
  color: #c8cfda;
  font-size: 13px;
  line-height: 1.32;
}

.unlock-growth {
  margin-bottom: 10px;
  position: relative;
  min-height: 206px;
  border-radius: 12px;
  border: 1px solid rgba(214, 255, 47, 0.2);
  background: rgba(214, 255, 47, 0.06);
  padding: 14px 10px 10px;
  display: grid;
  align-content: end;
}

.unlock-growth-chart {
  height: 148px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 6px;
}

.growth-bar {
  height: 8px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #e8ff84 0%, #d6ff2f 100%);
  transform-origin: bottom;
  transform: scaleY(0.12);
  opacity: 0.45;
  transition: none;
  will-change: transform, opacity;
}

.growth-bar.b1 { height: 32px; }
.growth-bar.b2 { height: 52px; }
.growth-bar.b3 { height: 76px; }
.growth-bar.b4 { height: 102px; }
.growth-bar.b5 { height: 132px; }

.growth-bar.is-on {
  animation: growth-bar-rise 520ms cubic-bezier(0.2, 0.82, 0.24, 1) forwards;
}

.unlock-growth-note {
  position: absolute;
  top: 10px;
  max-width: 172px;
  border-radius: 10px;
  border: 1px solid rgba(255, 104, 189, 0.52);
  background: linear-gradient(180deg, rgba(255, 73, 171, 0.3) 0%, rgba(255, 13, 142, 0.24) 100%), rgba(11, 18, 32, 0.88);
  box-shadow: 0 9px 24px rgba(255, 13, 142, 0.22);
  padding: 8px 10px;
  display: grid;
  gap: 3px;
  opacity: 0;
  transform: translateY(5px) scale(0.98);
  transition: none;
  will-change: transform, opacity;
  pointer-events: none;
}

.unlock-growth-note strong {
  color: #ffd8f0;
  font-size: 12px;
  line-height: 1.2;
}

.unlock-growth-note span {
  color: #ffe8f6;
  font-size: 11px;
  line-height: 1.28;
}

.unlock-growth-note.is-on {
  animation: growth-note-in 280ms ease forwards;
}

.unlock-growth-note:not(.is-on) {
  animation: growth-note-out 180ms ease forwards;
}

.unlock-growth-note.pos-1 { left: 8px; }
.unlock-growth-note.pos-2 { left: calc(50% - 86px); }
.unlock-growth-note.pos-3 { right: 8px; }

.unlock-growth-timing {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  color: #a8b0be;
  font-size: 10px;
  letter-spacing: 0.3px;
}

.unlock-proof {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.unlock-proof span {
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #aeb5c3;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.unlock-cta {
  width: 100%;
  margin-top: 10px;
}

@keyframes growth-bar-rise {
  0% {
    transform: scaleY(0.12);
    opacity: 0.45;
  }
  78% {
    transform: scaleY(1.06);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes growth-note-in {
  0% {
    opacity: 0;
    transform: translateY(7px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes growth-note-out {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(4px) scale(0.98);
  }
}

.community-title {
  margin: 0 0 10px !important;
  text-align: center;
  line-height: 1.08;
  letter-spacing: 0.6px;
  font-size: 17px !important;
}

.community-title span {
  color: var(--creative-green);
}

.community-motion {
  display: grid;
  gap: 12px;
}

.community-lane {
  overflow: hidden;
  border-radius: 14px;
}

.community-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.community-card {
  width: 188px;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  background: #1d2026;
  min-height: 182px;
  padding: 10px;
}

.community-card p,
.community-card h4,
.community-card small,
.community-stars {
  margin: 0;
}

.community-card p {
  color: #b7bcc4;
  font-size: 11px;
  line-height: 1.35;
}

.community-card h4 {
  color: #fff;
  margin-top: 4px;
  font-size: 12px;
}

.community-stars {
  color: #f1f1f1 !important;
  letter-spacing: 1.2px;
  font-size: 13px !important;
  margin-bottom: 6px !important;
}

.community-author {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.community-author span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #2a2d34;
  color: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.community-author small {
  color: #e7e7e7;
  font-size: 10px;
}


.paywall-guarantee p {
  margin: 0;
  color: #dbdbdb;
  line-height: 1.35;
}

.paywall-plans-repeat-wrap {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.paywall-faq details {
  border-top: 1px solid #2a2a2a;
  padding: 10px 0;
}

.paywall-faq details:first-of-type {
  border-top: none;
  padding-top: 0;
}

.paywall-faq summary {
  color: #f1f1f1;
  cursor: pointer;
}

.paywall-faq details p {
  color: #cfcfcf;
  margin: 8px 0 0;
}

.paywall-legal {
  margin-top: 10px;
  text-align: center;
  font-size: 11px;
  line-height: 1.3;
  color: #858c99;
}

.paywall-legal a {
  color: #9aa4b4;
  text-decoration: none;
}

.paywall-legal a:hover {
  color: #c6cfdd;
  text-decoration: underline;
}

.paywall-legal span {
  margin: 0 6px;
  color: #697385;
}


.panel-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #e1e1e1;
  border-top-color: var(--accent);
  animation: spin 0.85s linear infinite;
}

.panel-result .result-photo {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 10px 0 14px;
}

.catalog-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes emojiIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ageIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes selfieIn {
  from {
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), calc(var(--y) + 14px))
      rotate(calc(var(--r) - 3deg));
  }
  to {
    opacity: 1;
    transform: translate(calc(-50% + var(--x)), var(--y)) rotate(var(--r));
  }
}

@keyframes selfieEnter {
  from {
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), calc(var(--y) + 12px))
      rotate(calc(var(--r) - 2deg));
  }
  to {
    opacity: 1;
    transform: translate(calc(-50% + var(--x)), var(--y)) rotate(var(--r));
  }
}

@keyframes selfieTrain {
  0% {
    transform: translate(calc(-50% + var(--x)), var(--y)) rotate(var(--r));
  }
  25% {
    transform: translate(calc(-50% + var(--x) + 8px), calc(var(--y) - 2px))
      rotate(calc(var(--r) + 4deg));
  }
  50% {
    transform: translate(calc(-50% + var(--x) + 14px), calc(var(--y) + 1px))
      rotate(calc(var(--r) + 6deg));
  }
  75% {
    transform: translate(calc(-50% + var(--x) + 6px), calc(var(--y) + 3px))
      rotate(calc(var(--r) + 2deg));
  }
  100% {
    transform: translate(calc(-50% + var(--x)), var(--y)) rotate(var(--r));
  }
}

@keyframes selfieCardEnter {
  from {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.96);
  }
  to {
    opacity: 1;
  }
}

@keyframes selfieWave {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: -4px;
  }
  100% {
    margin-top: 0;
  }
}

@keyframes selfieWaveSmooth {
  0% {
    transform: translate3d(0, 0px, 0);
  }
  25% {
    transform: translate3d(0, -2px, 0);
  }
  50% {
    transform: translate3d(0, -3px, 0);
  }
  75% {
    transform: translate3d(0, -1px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}

@keyframes lookDealLeft {
  0% {
    opacity: 0;
    transform: translate(-70%, -46%) rotate(-2deg) scale(0.86);
  }
  100% {
    opacity: 1;
    transform: translate(-138%, -50%) rotate(-15deg) scale(0.94);
  }
}

@keyframes lookDealCenter {
  0% {
    opacity: 0;
    transform: translate(-54%, -42%) rotate(-1deg) scale(0.86);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -52%) rotate(0deg) scale(1.1);
  }
}

@keyframes lookDealRight {
  0% {
    opacity: 0;
    transform: translate(-30%, -44%) rotate(2deg) scale(0.86);
  }
  100% {
    opacity: 1;
    transform: translate(34%, -50%) rotate(15deg) scale(0.94);
  }
}

@keyframes lookFloatLeft {
  0%,
  100% {
    transform: translate(-138%, -50%) rotate(-15deg) scale(0.92);
  }
  50% {
    transform: translate(-138%, -52%) rotate(-13deg) scale(0.925);
  }
}

@keyframes lookFloatCenter {
  0%,
  100% {
    transform: translate(-50%, -52%) rotate(0deg) scale(1.1);
  }
  50% {
    transform: translate(-50%, -54%) rotate(0.8deg) scale(1.115);
  }
}

@keyframes lookFloatRight {
  0%,
  100% {
    transform: translate(34%, -50%) rotate(15deg) scale(0.92);
  }
  50% {
    transform: translate(34%, -52%) rotate(13deg) scale(0.925);
  }
}

@keyframes lookGlowPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 2px rgba(214, 255, 47, 0.42),
      0 0 18px rgba(214, 255, 47, 0.26),
      0 14px 30px rgba(0, 0, 0, 0.58);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(214, 255, 47, 0.62),
      0 0 28px rgba(214, 255, 47, 0.5),
      0 16px 34px rgba(0, 0, 0, 0.62);
  }
}

@keyframes figureFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes figureImageIn {
  from {
    transform: translate3d(18px, 0, 0) scale(1.04);
  }
  to {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes appleChoiceIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appleHeroIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes aiPointIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
