:root {
  color-scheme: light;
  --ink: #2a160e;
  --cocoa: #3a2118;
  --cream: #fff2df;
  --honey: #f3c76e;
  --sky: #82c6e7;
  --portrait-width: min(100vw, 1024px);
}

* { box-sizing: border-box; }

html {
  min-width: 280px;
  min-height: 100%;
  background: var(--sky);
}

body {
  margin: 0;
  min-width: 280px;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--sky);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
a { font: inherit; }

button,
a { color: inherit; }

[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--cocoa);
  text-decoration: none;
  transform: translateY(-170%);
  transition: transform .18s ease;
}

.skip-link:focus { transform: translateY(0); }

.beauty-bee-page,
.beauty-bee-artboard {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
}

.beauty-bee-artboard {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--sky);
}

.scene-extension {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(126, 199, 232, .18), rgba(126, 199, 232, .18)),
    url("/static/assets/beauty-bee-layers/sky-tile.png") center / cover no-repeat,
    var(--sky);
}

.scene-extension::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(226, 248, 255, .28), transparent 38%),
    linear-gradient(180deg, transparent 55%, rgba(248, 206, 201, .12));
  content: "";
}

.extension-cloud {
  position: absolute;
  display: block;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .74;
  filter: drop-shadow(0 18px 28px rgba(255, 226, 216, .14));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 38%, rgba(0, 0, 0, .82) 58%, transparent 76%);
  mask-image: radial-gradient(ellipse at center, #000 38%, rgba(0, 0, 0, .82) 58%, transparent 76%);
  will-change: transform;
}

.extension-cloud--left {
  left: -9vw;
  bottom: -6vw;
  background-image: url("/static/assets/beauty-bee-layers/top-left-cloud-cutout.png");
  animation: extension-cloud-left 25s ease-in-out -8s infinite alternate;
}

.extension-cloud--right {
  right: -8vw;
  bottom: 6vh;
  background-image: url("/static/assets/beauty-bee-layers/top-right-cloud-cutout.png");
  animation: extension-cloud-right 29s ease-in-out -14s infinite alternate;
}

.extension-cloud--center { display: none; }

.extension-glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 228, 221, .28);
  filter: blur(50px);
}

.extension-glow--one {
  top: 18%;
  left: 5%;
  width: 28vw;
  height: 24vw;
}

.extension-glow--two {
  right: 7%;
  bottom: 12%;
  width: 24vw;
  height: 30vw;
}

@keyframes extension-cloud-left {
  from { transform: translate3d(-1.5vw, .5vw, 0) scale(.98); }
  to { transform: translate3d(5vw, -1vw, 0) scale(1.025); }
}

@keyframes extension-cloud-right {
  from { transform: translate3d(3vw, -.4vw, 0) scale(1.02); }
  to { transform: translate3d(-4vw, 1vw, 0) scale(.985); }
}

.portrait-stage {
  position: relative;
  z-index: 1;
  width: var(--portrait-width);
  aspect-ratio: 2 / 3;
  margin-inline: auto;
  overflow: hidden;
}

.master-artwork {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

.exact-motion {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.exact-motion__cloud,
.exact-motion__bee {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

.exact-motion__cloud { opacity: .2; }

.exact-motion__cloud--left { animation: exact-cloud-left 16s ease-in-out -5s infinite alternate; }
.exact-motion__cloud--right { animation: exact-cloud-right 19s ease-in-out -11s infinite alternate; }

.exact-motion__bee--small {
  opacity: .38;
  animation: exact-bee-hover 3.8s ease-in-out infinite;
}

.exact-motion__bee--wings {
  opacity: .28;
  animation: exact-wing-shimmer .18s ease-in-out infinite alternate;
}

@keyframes exact-cloud-left {
  from { transform: translate3d(-3px, 1px, 0) scale(.998); opacity: .08; }
  to { transform: translate3d(8px, -2px, 0) scale(1.006); opacity: .25; }
}

@keyframes exact-cloud-right {
  from { transform: translate3d(5px, -1px, 0) scale(1.004); opacity: .08; }
  to { transform: translate3d(-7px, 2px, 0) scale(.998); opacity: .23; }
}

@keyframes exact-bee-hover {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); opacity: .16; }
  35% { transform: translate3d(3px, -3px, 0) rotate(1deg); opacity: .42; }
  70% { transform: translate3d(-2px, 2px, 0) rotate(-1deg); opacity: .3; }
}

@keyframes exact-wing-shimmer {
  from { transform: scaleY(.995); opacity: .12; }
  to { transform: scaleY(1.008); opacity: .38; }
}

.landscape-stage { display: none; }

.screen-reader-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.interaction-layer {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: var(--portrait-width);
  aspect-ratio: 2 / 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.interaction-layer > * { pointer-events: auto; }

.hotspot {
  position: absolute;
  z-index: 5;
  display: block;
  padding: 0;
  border: 0;
  outline: 0;
  appearance: none;
  cursor: pointer;
  color: transparent;
  background: transparent;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hotspot::after {
  position: absolute;
  inset: 2px;
  border: max(2px, .22cqw) solid transparent;
  border-radius: inherit;
  content: "";
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hotspot:hover::after {
    border-color: rgba(255, 246, 231, .62);
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 0 22px rgba(255, 235, 221, .4);
  }
}

.hotspot:focus-visible::after,
.hotspot.is-dragging::after {
  border-color: var(--ink);
  background: rgba(255, 245, 229, .14);
  box-shadow: 0 0 0 max(2px, .25cqw) rgba(255, 244, 222, .94);
}

.hotspot:active::after { background: rgba(42, 22, 14, .09); }

.hotspot--home {
  top: .911%; left: 3.516%; width: 21.582%; height: 6.576%; border-radius: 44% / 52%;
}

.hotspot--menu {
  top: .911%; left: 86.523%; width: 11.328%; height: 6.641%; border-radius: 50%;
}

.hotspot--upload {
  top: 47.917%; left: 29.004%; width: 44.141%; height: 19.401%; border-radius: 18% / 22%;
}

.hotspot--fill {
  top: 67.578%; left: 28.125%; width: 43.945%; height: 7.813%; border-radius: 999px;
}

.hotspot--templates {
  top: 75.26%; left: 5.078%; width: 30.762%; height: 15.625%; border-radius: 22%;
}

.hotspot--trending {
  top: 75.26%; left: 36.133%; width: 28.516%; height: 15.625%; border-radius: 22%;
}

.hotspot--brand {
  top: 75.26%; left: 64.844%; width: 30.469%; height: 15.625%; border-radius: 22%;
}

.hotspot--credits {
  z-index: 6; top: 90.625%; left: 1.953%; width: 16.895%; height: 9.049%; border-radius: 50%;
}

#photo-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.bee-menu {
  position: absolute;
  z-index: 30;
  top: 7.15%;
  right: 3.9%;
  width: min(290px, 34%);
  padding: clamp(9px, 1.5cqw, 15px);
  border: 1px solid rgba(75, 37, 25, .22);
  border-radius: clamp(22px, 3.2cqw, 34px);
  background:
    radial-gradient(circle at 15% 6%, rgba(255, 255, 255, .88), transparent 34%),
    linear-gradient(145deg, rgba(255, 228, 220, .98), rgba(244, 159, 159, .98));
  box-shadow: 0 22px 55px rgba(62, 34, 23, .28), inset 0 0 0 5px rgba(255, 255, 255, .22);
  transform-origin: top right;
  animation: menu-in .18s ease-out both;
  backdrop-filter: blur(14px);
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-10px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bee-menu__eyebrow {
  margin: 0 0 8px;
  padding: 2px 8px 10px;
  border-bottom: 1px solid rgba(58, 33, 24, .15);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.bee-menu > a,
.bee-menu > button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 6px 8px;
  border: 0;
  border-radius: 13px;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  font-weight: 760;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.bee-menu > a > span,
.bee-menu > button > span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--cream);
  background: var(--cocoa);
  font-size: 10px;
}

.bee-menu > a:hover,
.bee-menu > a:focus-visible,
.bee-menu > button:hover,
.bee-menu > button:focus-visible {
  outline: 0;
  background: rgba(255, 248, 232, .66);
}

.bee-menu__account {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(58, 33, 24, .15);
}

.bee-menu__account a {
  display: grid;
  min-height: 38px;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(58, 33, 24, .18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 245, 228, .66);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.bee-menu__account .bee-menu__join {
  color: #ffe9ba;
  background: var(--cocoa);
}

.photo-state {
  position: absolute;
  z-index: 12;
  top: 50.5%;
  left: 31.8%;
  display: grid;
  grid-template-columns: 10.5cqw minmax(0, 1fr);
  align-items: center;
  gap: 1.6cqw;
  width: 36.4%;
  min-height: 12.9%;
  padding: 1.5cqw;
  border: .24cqw solid rgba(191, 134, 100, .48);
  border-radius: 3.7cqw;
  background: #fff1de;
  box-shadow: 0 1.8cqw 3.8cqw rgba(88, 51, 32, .2), inset 0 0 0 .45cqw rgba(255, 255, 255, .5);
  animation: photo-in .24s ease-out both;
}

@keyframes photo-in {
  from { opacity: 0; transform: translateY(1.2cqw) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.photo-state > img {
  width: 10.5cqw;
  height: 10.5cqw;
  border: .32cqw solid rgba(255, 255, 255, .88);
  border-radius: 2.5cqw;
  object-fit: cover;
  box-shadow: 0 .8cqw 1.8cqw rgba(71, 43, 27, .18);
}

.photo-state__copy { min-width: 0; }
.photo-state__copy strong,
.photo-state__copy span { display: block; }

.photo-state__copy strong {
  margin-bottom: .4cqw;
  font-size: clamp(12px, 2cqw, 21px);
  line-height: 1.05;
}

.photo-state__copy span {
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(8px, 1.25cqw, 13px);
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-state__copy button {
  margin-top: 1cqw;
  padding: .55cqw 1cqw;
  border: .15cqw solid rgba(58, 33, 24, .24);
  border-radius: 999px;
  color: var(--cream);
  background: var(--cocoa);
  font-size: clamp(8px, 1.1cqw, 12px);
  font-weight: 750;
  cursor: pointer;
}

.toast-region {
  position: fixed;
  z-index: 80;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  max-width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.bee-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 232, 194, .38);
  border-radius: 999px;
  color: #fff7e8;
  background: rgba(50, 28, 20, .94);
  box-shadow: 0 12px 34px rgba(48, 26, 18, .3);
  font-size: 14px;
  font-weight: 700;
  animation: toast-in .22s ease-out both;
  backdrop-filter: blur(12px);
}

.bee-toast::before { content: "🐝"; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.bee-dialog {
  width: min(440px, calc(100vw - 28px));
  max-width: 440px;
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.bee-dialog::backdrop {
  background: rgba(49, 31, 23, .42);
  backdrop-filter: blur(6px);
}

.bee-dialog[open] { animation: dialog-in .22s ease-out both; }

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bee-dialog__surface {
  position: relative;
  padding: 38px 34px 32px;
  overflow: hidden;
  border: 2px solid rgba(112, 65, 42, .18);
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 255, 255, .95), transparent 32%),
    linear-gradient(145deg, #ffece2, #f7b7b4);
  box-shadow: 0 28px 80px rgba(63, 36, 24, .32), inset 0 0 0 7px rgba(255, 255, 255, .22);
  text-align: center;
}

.bee-dialog__surface::after {
  position: absolute;
  right: -56px;
  bottom: -72px;
  width: 160px;
  height: 160px;
  border: 22px solid rgba(255, 245, 227, .2);
  border-radius: 50%;
  content: "";
}

.bee-dialog__close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0 0 3px;
  border: 1px solid rgba(58, 33, 24, .18);
  border-radius: 50%;
  background: rgba(255, 247, 234, .58);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.bee-dialog__mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 17px;
  border-radius: 50%;
  background: rgba(255, 242, 221, .76);
  box-shadow: 0 9px 22px rgba(79, 46, 28, .16);
  font-size: 37px;
}

.bee-dialog__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.bee-dialog h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 7vw, 42px);
  line-height: 1;
}

.bee-dialog p:not(.bee-dialog__eyebrow) {
  max-width: 330px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.55;
}

.bee-dialog__preview {
  display: block;
  width: 128px;
  height: 128px;
  margin: 20px auto 0;
  border: 5px solid rgba(255, 246, 231, .85);
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(62, 35, 23, .2);
}

.bee-dialog__button {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 15px 20px;
  border: 2px solid #e4a84d;
  border-radius: 999px;
  color: #ffe5ae;
  background: linear-gradient(180deg, #4b2b20, #2c1912);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 9px 18px rgba(62, 35, 23, .2);
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
}

.bee-dialog__button:hover,
.bee-dialog__button:focus-visible,
.bee-dialog__close:hover,
.bee-dialog__close:focus-visible {
  outline: 3px solid rgba(255, 244, 218, .94);
  outline-offset: 2px;
}

@media (min-width: 600px) {
  :root { --portrait-width: min(100vw, 66.6667svh, 1024px); }
}

@media (max-width: 599px) {
  .scene-extension {
    background: linear-gradient(180deg, #82c6e7 0%, #8dcae7 66%, #efcfce 100%);
  }

  .extension-cloud {
    z-index: 1;
    width: 62vw;
    top: 64%;
    bottom: auto;
    opacity: .86;
    background-size: contain;
    -webkit-mask-image: radial-gradient(ellipse at 50% 48%, #000 24%, rgba(0, 0, 0, .9) 45%, transparent 74%);
    mask-image: radial-gradient(ellipse at 50% 48%, #000 24%, rgba(0, 0, 0, .9) 45%, transparent 74%);
  }

  .extension-cloud--left { left: -22vw; }

  .extension-cloud--right {
    right: -22vw;
    top: 68%;
    width: 58vw;
    background-image: url("/static/assets/beauty-bee-layers/top-left-cloud-cutout.png");
  }

  .extension-cloud--center {
    top: 80%;
    left: 22%;
    display: block;
    width: 56vw;
    background-image: url("/static/assets/beauty-bee-layers/top-left-cloud-cutout.png");
    opacity: .68;
    animation: extension-cloud-left 27s ease-in-out -16s infinite alternate-reverse;
  }

  .bee-menu {
    right: 2.2%;
    width: min(270px, 68%);
    padding: 9px;
  }

  .bee-menu > a,
  .bee-menu > button {
    min-height: 38px;
    font-size: 13px;
  }

  .photo-state {
    left: 29.8%;
    width: 40.4%;
  }
}

@media (min-width: 900px) and (min-aspect-ratio: 6 / 5) {
  .portrait-stage {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3.5%, #000 96.5%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 3.5%, #000 96.5%, transparent 100%);
  }

  .landscape-stage {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    min-height: 100%;
    overflow: hidden;
  }

  .landscape-stage img {
    position: absolute;
    display: block;
    height: auto;
    pointer-events: none;
    user-select: none;
  }

  .landscape-stage .landscape-header,
  .landscape-stage .landscape-hero,
  .landscape-stage .landscape-upload,
  .landscape-stage .landscape-fill,
  .landscape-stage .landscape-deck { display: none; }

  .landscape-left-environment,
  .landscape-right-environment {
    z-index: 1;
    top: 50%;
    width: clamp(120px, 12vw, 190px);
    opacity: .96;
    transform: translateY(-50%);
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0, #000 5%, #000 94%, transparent 100%),
      linear-gradient(90deg, transparent 0, #000 28%, #000 100%);
    mask-image:
      linear-gradient(180deg, transparent 0, #000 5%, #000 94%, transparent 100%),
      linear-gradient(90deg, transparent 0, #000 28%, #000 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .landscape-left-environment {
    right: calc(50% + var(--portrait-width) / 2 - 1px);
    left: auto;
  }

  .landscape-right-environment {
    right: auto;
    left: calc(50% + var(--portrait-width) / 2 - 1px);
    transform: translateY(-50%);
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0, #000 5%, #000 94%, transparent 100%),
      linear-gradient(90deg, #000 0, #000 72%, transparent 100%);
    mask-image:
      linear-gradient(180deg, transparent 0, #000 5%, #000 94%, transparent 100%),
      linear-gradient(90deg, #000 0, #000 72%, transparent 100%);
  }
}

@media (max-height: 600px) {
  .bee-dialog {
    max-height: calc(100dvh - 12px);
    overflow-y: auto;
  }

  .bee-dialog__surface {
    padding: 22px 22px 18px;
    border-radius: 28px;
  }

  .bee-dialog__mark {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    font-size: 28px;
  }

  .bee-dialog h2 { font-size: 30px; }

  .bee-dialog__preview {
    width: 80px;
    height: 80px;
    margin-top: 12px;
  }
}

@media (forced-colors: active) {
  .hotspot:focus-visible::after {
    border-color: CanvasText;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exact-motion { display: none; }

  .extension-cloud { animation: none !important; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* -------------------------------------------------------------------------
   Approved responsive Beauty Bee landing

   This is the production translation of the locked desktop, tablet, and
   mobile approval. The viewport is full bleed; the focal composition scales
   inside a centered reference stage so it never stretches out of proportion.
   ------------------------------------------------------------------------- */

html,
body,
.beauty-bee-page,
.beauty-bee-artboard {
  width: 100%;
  min-height: 100%;
}

body { overflow: hidden; }

.beauty-bee-page {
  min-height: 100vh;
  min-height: 100svh;
}

.beauty-bee-artboard {
  position: relative;
  isolation: isolate;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background-color: #82c8e7;
  background-image: url("/static/assets/beauty-bee-responsive/environment-desktop-clean.png");
  background-position: center;
  background-size: cover;
  animation: approved-cloud-breathe 12s ease-in-out infinite alternate;
}

.beauty-bee-artboard::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  box-shadow: inset 0 0 7vw rgba(48, 96, 120, .08);
  content: "";
}

@keyframes approved-cloud-breathe {
  from { background-position: 49.2% 50%; }
  to { background-position: 50.8% 49.2%; }
}

.approved-stage {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(100vw, 160svh);
  aspect-ratio: 1440 / 900;
  overflow: visible;
  container-type: inline-size;
  transform: translate(-50%, -50%);
}

.approved-stage img {
  user-select: none;
  -webkit-user-drag: none;
}

.nav-ribbon {
  position: absolute;
  z-index: 5;
  top: 1%;
  left: 50%;
  width: 84%;
  height: 7.2%;
  object-fit: fill;
  pointer-events: none;
  transform: translateX(-50%);
  filter: saturate(.88) drop-shadow(0 7px 7px rgba(74, 48, 38, .13));
}

.source-flower {
  position: absolute;
  z-index: 3;
  height: auto;
  pointer-events: none;
  transform-origin: 50% 100%;
  filter: drop-shadow(0 10px 9px rgba(71, 67, 51, .08));
  animation: approved-flower-sway 10s ease-in-out infinite alternate;
}

.flower-left {
  top: 24.5%;
  left: -1.2%;
  width: 13.2%;
}

.flower-right-main {
  top: 25.5%;
  right: -.5%;
  width: 13.5%;
  animation-delay: -3.2s;
}

.flower-right-blue {
  top: 72%;
  right: 2.2%;
  width: 8.2%;
  animation-delay: -5.4s;
}

@keyframes approved-flower-sway {
  from { transform: rotate(-.45deg) translateY(0); }
  to { transform: rotate(.65deg) translateY(-2px); }
}

.greeting {
  position: absolute;
  z-index: 9;
  top: 4.8%;
  right: 10.5%;
  margin: 0;
  font-size: 1.0417cqw;
  white-space: nowrap;
}

.art-button {
  position: absolute;
  z-index: 8;
  display: block;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 9px 10px rgba(78, 48, 36, .14));
  transition: transform .18s ease, filter .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.art-button img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.art-button:focus-visible {
  outline: 3px solid rgba(255, 197, 70, .96);
  outline-offset: 4px;
}

.home-button {
  top: 1.2%;
  left: 2.7%;
  width: 10.5%;
}

.home-button img {
  -webkit-mask-image: linear-gradient(to right, #000 0 84%, rgba(0, 0, 0, .95) 88%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0 84%, rgba(0, 0, 0, .95) 88%, transparent 100%);
}

.menu-button {
  top: 1.2%;
  right: 2.7%;
  width: 5.3%;
}

.menu-button img {
  -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, .65) 24%, #000 39% 100%);
  mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, .65) 24%, #000 39% 100%);
}

.home-button:hover,
.home-button:focus-visible,
.menu-button:hover,
.menu-button:focus-visible {
  filter: drop-shadow(0 12px 13px rgba(78, 48, 36, .2));
  transform: translateY(-2px);
}

.hero-copy {
  position: absolute;
  z-index: 9;
  top: 8.3%;
  left: 50%;
  width: 21.5278cqw;
  transform: translateX(-50%);
  color: #221411;
  text-align: center;
}

.hero-copy p,
.hero-title { margin: 0; }

.overline,
.directions {
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.overline { font-size: .625cqw; }

.hero-title > span { display: block; }

.headline-top,
.headline-bottom {
  font-size: 2.3611cqw;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .94;
}

.headline-top { margin-top: .2778cqw; }

.creating {
  position: relative;
  width: 100%;
  margin: .2083cqw auto 0;
}

.creating-word {
  display: block;
  width: 94%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 7px 6px rgba(103, 62, 48, .15));
}

.headline-bee {
  position: absolute;
  right: -1%;
  top: 30%;
  width: 11%;
  height: auto;
  transform-origin: 30% 60%;
  animation: approved-bee-flutter 2.8s ease-in-out infinite;
  filter: drop-shadow(0 6px 6px rgba(64, 43, 35, .16));
}

@keyframes approved-bee-flutter {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50% { transform: translate(7px, -8px) rotate(4deg); }
}

.headline-bottom { margin-top: -.2083cqw; }

.directions {
  margin-top: .2083cqw !important;
  font-size: .6944cqw;
}

.directions-copy {
  margin-top: .2083cqw !important;
  font-size: .7639cqw;
  line-height: 1.2;
}

.upload-button {
  z-index: 12;
  top: 35.8%;
  left: 50%;
  width: 24%;
  transform: translateX(-55.25%);
  filter: drop-shadow(0 18px 16px rgba(78, 48, 36, .17));
}

.upload-button:hover,
.upload-button:focus-visible,
.upload-button.is-dragging {
  transform: translateX(-55.25%) translateY(-3px);
  filter: drop-shadow(0 21px 19px rgba(78, 48, 36, .22));
}

.cta-button {
  z-index: 18;
  top: 65.8%;
  left: 50%;
  width: 19%;
  transform: translateX(-50%);
  filter: drop-shadow(0 11px 10px rgba(78, 48, 36, .16));
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateX(-50%) translateY(-3px);
  filter: drop-shadow(0 14px 13px rgba(78, 48, 36, .21));
}

.feature-shelf {
  position: absolute;
  z-index: 10;
  top: 75%;
  left: 50%;
  width: 39%;
  height: auto;
  pointer-events: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 18px rgba(78, 48, 36, .16));
}

.feature-hit {
  position: absolute;
  z-index: 20;
  top: 76%;
  height: 18%;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.feature-hit:focus-visible {
  outline: 3px solid rgba(255, 197, 70, .95);
  outline-offset: 3px;
}

.templates-hit { left: 30.5%; width: 13%; }
.trending-hit { left: 43.5%; width: 13%; }
.brand-hit { left: 56.5%; width: 13%; }

.credits-hit {
  z-index: 21;
  top: 89.5%;
  left: 30.5%;
  width: 7.5%;
  height: 10.5%;
  border-radius: 50%;
}

.bee-menu {
  z-index: 40;
  top: 10.5%;
  right: 3.2%;
  width: 230px;
}

.photo-state {
  z-index: 35;
  top: 50.5%;
  left: 31.8%;
  width: 36.4%;
}

@media (min-width: 600px) and (max-aspect-ratio: 6 / 5) {
  .beauty-bee-artboard {
    background-image: url("/static/assets/beauty-bee-responsive/environment-tablet-clean.png");
  }

  .approved-stage {
    width: min(100vw, 75svh);
    aspect-ratio: 834 / 1112;
  }

  .nav-ribbon { top: .8%; width: 76%; height: 6.7%; }
  .home-button { top: 1.2%; left: 2.4%; width: 20.3%; }
  .menu-button { top: 1.15%; right: 2.2%; width: 10.2%; }
  .greeting { top: 4.7%; right: 13%; font-size: 1.7986cqw; }
  .hero-copy { top: 8.3%; width: 54.5564cqw; }
  .overline { font-size: 1.199cqw; }
  .headline-top,
  .headline-bottom { font-size: 5.6355cqw; }
  .headline-top { margin-top: .4796cqw; }
  .creating { margin-top: .5995cqw; }
  .headline-bottom { margin-top: -.2398cqw; }
  .directions { margin-top: .7194cqw !important; font-size: 1.259cqw; }
  .directions-copy { margin-top: .5995cqw !important; font-size: 1.5588cqw; line-height: 1.25; }
  .upload-button { top: 34%; width: 54.6%; }
  .cta-button { top: 65.8%; width: 43.3%; }
  .feature-shelf { top: 75.3%; width: 81.5%; }
  .feature-hit { top: 75.8%; height: 18%; }
  .templates-hit { left: 8%; width: 28%; }
  .trending-hit { left: 36%; width: 28%; }
  .brand-hit { left: 64%; width: 28%; }
  .credits-hit { top: 90%; left: 8.5%; width: 15%; height: 9.5%; }
  .flower-left { top: 23%; left: -5.5%; width: 25%; }
  .flower-right-main { top: 29%; right: -4%; width: 25%; }
  .flower-right-blue { top: 69%; right: .5%; width: 15%; }
  .bee-menu { top: 7.5%; right: 2.5%; width: 230px; }
  .photo-state { left: 29.8%; width: 40.4%; }
}

@media (max-width: 599px) {
  .beauty-bee-artboard {
    background-image: url("/static/assets/beauty-bee-responsive/environment-mobile-clean.png");
  }

  .approved-stage {
    width: min(100vw, 46.2085svh);
    aspect-ratio: 390 / 844;
  }

  .nav-ribbon { top: .3%; width: 76%; height: 4.8%; }
  .home-button { top: .55%; left: 1.6%; width: 29%; }
  .menu-button { top: .5%; right: 1.2%; width: 14.5%; }
  .greeting { top: 2.55%; right: 15%; font-size: 2.5641cqw; }
  .hero-copy { top: 6.9%; width: 90%; }
  .overline { font-size: 1.9231cqw; }
  .headline-top,
  .headline-bottom { font-size: 7.9487cqw; }
  .headline-top { margin-top: 1.0256cqw; }
  .creating { margin-top: .5128cqw; }
  .creating-word { width: 93%; }
  .headline-bottom { margin-top: -.5128cqw; }
  .directions { margin-top: .7692cqw !important; font-size: 2.3077cqw; }
  .directions-copy { margin-top: .7692cqw !important; font-size: 2.5641cqw; line-height: 1.28; }
  .upload-button { top: 32.3%; width: 88%; }
  .cta-button { top: 64.7%; width: 70%; }
  .feature-shelf { top: 74.7%; width: 96.5%; }
  .feature-hit { top: 75.2%; height: 15%; }
  .templates-hit { left: 1.5%; width: 33%; }
  .trending-hit { left: 33.5%; width: 33%; }
  .brand-hit { left: 65.5%; width: 33%; }
  .credits-hit { top: 84.2%; left: 1.8%; width: 18%; height: 9.3%; }
  .flower-left { top: 23.5%; left: -14%; width: 42%; }
  .flower-right-main { top: 30%; right: -17%; width: 46%; }
  .flower-right-blue { top: 67%; right: -4%; width: 27%; }
  .bee-menu { top: 7.5%; right: 2.5%; width: 185px; }
  .bee-menu > a,
  .bee-menu > button { min-height: 36px; padding: 5px 7px; font-size: 12px; }
  .bee-menu__account { grid-template-columns: 1fr; }
  .photo-state { top: 50.5%; left: 29.8%; width: 40.4%; }
}

@media (max-height: 560px) and (min-aspect-ratio: 6 / 5) {
  .bee-menu {
    max-height: 78vh;
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .beauty-bee-artboard,
  .headline-bee,
  .source-flower {
    animation: none !important;
  }
}
