#create {
  position: relative;
  overflow: hidden;
  padding: 82px 5.3% 50px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(253, 2, 75, .22), transparent 28rem),
    radial-gradient(circle at 84% 8%, rgba(253, 2, 75, .34), transparent 20rem),
    #050505;
  isolation: isolate;
}

#create:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(transparent, #000 20%, #000 78%, transparent);
}

.creation-shell {
  max-width: 1480px;
  margin: 0 auto;
}

.creation-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  padding-bottom: 18px;
}

.creation-top .eyebrow {
  margin: 0;
}

.creation-top > span,
.creation-badge,
.creation-quick span,
.creation-menu small,
.creation-scene-top,
.creation-kicker,
.creation-meta,
.creation-bottom {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.creation-top > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bdbdbd;
}

.creation-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fd024b;
  box-shadow: 0 0 18px rgba(253, 2, 75, .9);
}

.creation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: end;
  min-height: 420px;
  padding: 48px 0 44px;
}

.creation-badge {
  display: inline-flex;
  padding: 9px 11px;
  border: 1px solid rgba(253, 2, 75, .45);
  color: #fd024b;
  background: rgba(253, 2, 75, .08);
}

.creation-hero h2 {
  margin: 24px 0 18px;
  font-size: clamp(88px, 13vw, 188px);
  line-height: .78;
  letter-spacing: 0;
}

.creation-hero h2 span {
  color: #fd024b;
}

.creation-hero p {
  max-width: 650px;
  margin: 0;
  color: #d7d7d7;
  font-size: 15px;
  line-height: 1.8;
}

.creation-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.creation-quick span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
}

.creation-radar {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.creation-radar:before,
.creation-radar:after,
.creation-radar span {
  content: "";
  position: absolute;
  border: 1px solid rgba(253, 2, 75, .35);
  border-radius: 50%;
}

.creation-radar:before {
  inset: 0;
  animation: radar-spin 20s linear infinite;
}

.creation-radar:after {
  inset: 16%;
  border-color: rgba(255, 255, 255, .18);
}

.creation-radar span:nth-of-type(1) {
  inset: 31%;
  background: rgba(253, 2, 75, .08);
}

.creation-radar span:nth-of-type(2) {
  width: 115%;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, #fd024b, transparent);
}

.creation-radar span:nth-of-type(3) {
  width: 1px;
  height: 115%;
  border: 0;
  border-radius: 0;
  background: linear-gradient(transparent, #fd024b, transparent);
}

.creation-radar img {
  position: relative;
  z-index: 1;
  width: min(62%, 220px);
  filter: drop-shadow(0 0 32px rgba(253, 2, 75, .65));
  animation: float-raven 4.5s ease-in-out infinite;
}

.creation-workbench {
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.creation-menu {
  display: grid;
  gap: 10px;
}

.creation-menu button {
  position: relative;
  display: grid;
  grid-template-columns: 34px 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 78px;
  padding: 14px 16px;
  overflow: hidden;
  color: #fff;
  text-align: left;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  transition: transform .22s, border-color .22s, background .22s;
}

.creation-menu button:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(253, 2, 75, .34), transparent);
  opacity: 0;
  transition: opacity .22s;
}

.creation-menu button > * {
  position: relative;
  z-index: 1;
}

.creation-menu button:hover,
.creation-menu button[aria-selected=true] {
  transform: translateX(8px);
  border-color: rgba(253, 2, 75, .72);
  background: rgba(253, 2, 75, .12);
}

.creation-menu button[aria-selected=true]:before {
  opacity: 1;
}

.creation-index {
  color: #8c8c8c;
  font-size: 10px;
  font-weight: 800;
}

.creation-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fd024b;
  border: 1px solid rgba(253, 2, 75, .42);
  background: #080808;
  font-size: 20px;
}

.creation-name {
  display: block;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(22px, 2.25vw, 34px);
  line-height: .95;
}

.creation-menu small {
  display: block;
  margin-top: 5px;
  color: #aaa;
}

.creation-arrow {
  color: #fd024b;
  font-size: 22px;
}

.creation-scene {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  background: #0b0b0b;
  border: 1px solid rgba(253, 2, 75, .28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

.creation-scene-top {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  color: #adadad;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.creation-count {
  color: #fd024b;
}

.creation-art {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #050505;
}

.creation-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.08);
  transition: transform .55s;
}

.creation-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 32%, rgba(5, 5, 5, .85)),
    linear-gradient(135deg, rgba(253, 2, 75, .28), transparent 42%);
}

.creation-scene:hover .creation-art img {
  transform: scale(1.055);
}

.creation-cross {
  position: absolute;
  z-index: 2;
  color: #fd024b;
  font: 25px monospace;
}

.cross-one {
  left: 16px;
  top: 12px;
}

.cross-two {
  right: 16px;
  bottom: 12px;
}

.creation-sticker {
  position: absolute;
  z-index: 2;
  right: 24px;
  top: 22px;
  width: 82px;
  height: 82px;
  display: grid;
  place-content: center;
  color: #fff;
  background: #fd024b;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transform: rotate(10deg);
  box-shadow: 0 18px 35px rgba(253, 2, 75, .28);
}

.creation-caption {
  padding: 25px;
}

.creation-kicker {
  margin: 0 0 12px;
  color: #fd024b;
}

.creation-caption h3 {
  min-height: 78px;
  max-width: 560px;
  margin: 0 0 12px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(38px, 4vw, 64px);
  line-height: .9;
}

.creation-description {
  max-width: 620px;
  min-height: 52px;
  margin: 0 0 18px;
  color: #cfcfcf;
  font-size: 13px;
  line-height: 1.75;
}

.creation-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.creation-chips span {
  padding: 8px 10px;
  color: #fff;
  background: rgba(253, 2, 75, .16);
  border: 1px solid rgba(253, 2, 75, .34);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
}

.creation-meta {
  display: grid;
  grid-template-columns: 1fr auto 34px;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  color: #9f9f9f;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.creation-meta strong {
  color: #fff;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 38px;
  line-height: .8;
}

.creation-meta a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #fd024b;
  font-size: 20px;
}

.creation-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.creation-cards button {
  min-height: 172px;
  padding: 18px;
  color: #fff;
  text-align: left;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .22s, background .22s, border-color .22s;
}

.creation-cards button:hover,
.creation-cards button.active {
  transform: translateY(-8px);
  background: #fd024b;
  border-color: #fd024b;
}

.creation-cards span {
  display: block;
  color: #fd024b;
  font-size: 25px;
  margin-bottom: 20px;
}

.creation-cards button:hover span,
.creation-cards button.active span {
  color: #fff;
}

.creation-cards strong {
  display: block;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 24px;
  line-height: .95;
  margin-bottom: 12px;
}

.creation-cards small {
  display: block;
  color: #bebebe;
  font-size: 10px;
  line-height: 1.6;
}

.creation-cards button:hover small,
.creation-cards button.active small {
  color: #fff;
}

.creation-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 20px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.scene-enter .creation-art img {
  animation: creation-image-in .42s ease-out;
}

.scene-enter .creation-caption {
  animation: creation-copy-in .35s ease-out;
}

@keyframes creation-image-in {
  from { opacity: .28; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes creation-copy-in {
  from { opacity: .2; translate: 0 12px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes radar-spin {
  to { rotate: 360deg; }
}

@keyframes float-raven {
  50% { transform: translateY(-12px) rotate(-2deg); }
}

html[data-theme=light] #create {
  color: #111;
  background:
    linear-gradient(135deg, rgba(253, 2, 75, .12), transparent 28rem),
    #fff;
}

html[data-theme=light] #create:before {
  background-image:
    linear-gradient(rgba(17, 17, 17, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .055) 1px, transparent 1px);
}

html[data-theme=light] .creation-hero p,
html[data-theme=light] .creation-top > span,
html[data-theme=light] .creation-menu small,
html[data-theme=light] .creation-bottom {
  color: #575757;
}

html[data-theme=light] .creation-menu button,
html[data-theme=light] .creation-cards button {
  color: #111;
  background: #fff;
  border-color: rgba(17, 17, 17, .13);
  box-shadow: 0 16px 42px rgba(17, 17, 17, .06);
}

html[data-theme=light] .creation-menu button:hover,
html[data-theme=light] .creation-menu button[aria-selected=true],
html[data-theme=light] .creation-cards button:hover,
html[data-theme=light] .creation-cards button.active {
  color: #fff;
  background: #111;
  border-color: #fd024b;
}

html[data-theme=light] .creation-scene {
  background: #111;
}

@media (max-width: 1120px) {
  .creation-hero {
    grid-template-columns: 1fr 260px;
  }

  .creation-workbench {
    grid-template-columns: 1fr;
  }

  .creation-menu {
    grid-template-columns: repeat(2, 1fr);
  }

  .creation-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  #create {
    padding: 54px 6% 34px;
  }

  .creation-top > span {
    font-size: 0;
  }

  .creation-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 0 28px;
  }

  .creation-hero h2 {
    font-size: 82px;
  }

  .creation-hero p {
    font-size: 12px;
  }

  .creation-radar {
    width: 210px;
    margin: 0 auto;
  }

  .creation-menu,
  .creation-cards {
    grid-template-columns: 1fr;
  }

  .creation-menu button {
    min-height: 72px;
    grid-template-columns: 28px 36px 1fr 20px;
    gap: 9px;
    padding: 12px;
  }

  .creation-icon {
    width: 36px;
    height: 36px;
  }

  .creation-name {
    font-size: 24px;
  }

  .creation-art {
    height: 238px;
  }

  .creation-caption {
    padding: 20px;
  }

  .creation-caption h3 {
    min-height: 0;
    font-size: 45px;
  }

  .creation-description {
    min-height: 0;
    font-size: 12px;
  }

  .creation-cards button {
    min-height: 132px;
  }

  .creation-bottom {
    font-size: 6px;
    line-height: 1.8;
  }

  .creation-bottom span:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creation-radar:before,
  .creation-radar img,
  .scene-enter .creation-art img,
  .scene-enter .creation-caption {
    animation: none !important;
  }

  .creation-menu button,
  .creation-cards button,
  .creation-art img {
    transition: none !important;
  }
}
