:root {
  --blue: #2620f5;
  --blue-2: #4f46f9;
  --ink: #050a45;
  --muted: #6d7f96;
  --nav-muted: #74859a;
  --panel: #ffffff;
  --sidebar-width: 339px;
  --app-scale: 1;
  --app-left: 0px;
  --app-top: 0px;
  --app-width: 1920px;
  --wide-offset: 0px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  background: #eef1ff;
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  overflow: hidden;
}

button,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.app-shell {
  position: absolute;
  top: var(--app-top);
  left: var(--app-left);
  width: var(--app-width);
  height: 1080px;
  overflow: hidden;
  background: #fff;
  transform: scale(var(--app-scale));
  transform-origin: top left;
}

.sidebar {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 10;
  width: var(--sidebar-width);
  height: 1080px;
  padding: 44px 28px 42px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fff 0%, #eef1ff 55%, #dfe3ff 100%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 260px;
  margin-left: 8px;
  text-decoration: none;
}

.brand-symbol {
  width: 69px;
  height: 62px;
  object-fit: contain;
}

.brand-wordmark {
  width: 178px;
  height: 41px;
  object-fit: contain;
  transform: translateY(8px);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 56px;
}

.nav-item {
  width: 282px;
  height: 90px;
  padding: 0 16px 0 31px;
  display: flex;
  align-items: center;
  gap: 29px;
  border-radius: 27px;
  color: var(--muted);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-normal {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 29px;
}

.nav-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  opacity: 0.95;
}

.nav-icon img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  filter: grayscale(1) saturate(0.35) brightness(0.78);
  opacity: 0.72;
}

.nav-item.active {
  color: #1c0aff;
  border: 3px solid #fff;
  background: linear-gradient(90deg, #e2e1fd 0%, #ddddfb 100%);
}

.nav-item.active .nav-icon {
  opacity: 1;
}

.nav-item.active .nav-icon img {
  filter: none;
  opacity: 1;
}

.nav-item:hover {
  transform: translateX(3px);
}

.recent-chat-list {
  width: 224px;
  margin: -2px 0 0 28px;
  display: none;
  flex-direction: column;
  gap: 16px;
}

.nav-item.active + .recent-chat-list {
  display: flex;
}

.recent-chat-person {
  width: 100%;
  height: 44px;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #273154;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.recent-chat-person img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(80, 88, 145, 0.12);
}

.recent-chat-person:nth-child(1) img {
  object-position: 52% 16%;
}

.recent-chat-person:nth-child(3) img {
  object-position: 50% 14%;
}

.search-nav.search-mode {
  padding-left: 24px;
  padding-right: 18px;
  cursor: text;
}

.search-nav.search-mode .nav-normal {
  display: none;
}

.nav-search-control {
  width: 100%;
  display: none;
  align-items: center;
  gap: 18px;
}

.search-nav.search-mode .nav-search-control {
  display: flex;
}

.nav-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: #1c0aff;
  font: inherit;
}

.nav-search-input::placeholder {
  color: #6d7f96;
  opacity: 0.72;
}

.stage {
  position: relative;
  width: calc(var(--app-width) - var(--sidebar-width));
  height: 1080px;
  margin-left: var(--sidebar-width);
  overflow: hidden;
}

.home-view,
.grid-view,
.chat-view {
  position: absolute;
  inset: 0;
}

.home-view {
  z-index: 2;
}

.grid-view {
  z-index: 3;
  display: none;
}

.chat-view {
  z-index: 4;
  display: none;
}

.stage.grid-active .home-view {
  display: none;
}

.stage.grid-active .grid-view {
  display: block;
}

.stage.chat-active .home-view,
.stage.chat-active .grid-view {
  display: none;
}

.stage.chat-active .chat-view {
  display: block;
}

.bg {
  position: absolute;
  top: 0;
  left: calc(-1 * var(--sidebar-width));
  width: var(--app-width);
  height: 1080px;
  object-fit: cover;
  object-position: center center;
}

.home-profile {
  position: absolute;
  top: 42px;
  right: 22px;
  z-index: 7;
  width: 256px;
  display: none;
  color: #273154;
}

.home-profile.is-visible {
  display: block;
}

.stage.grid-active .home-profile,
.stage.chat-active .home-profile {
  display: none;
}

.home-profile-button {
  width: 100%;
  height: 64px;
  padding: 0 17px 0 16px;
  border: 1px solid rgba(236, 240, 255, 0.54);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: #11236f;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 26px rgba(120, 127, 220, 0.12);
  cursor: pointer;
  backdrop-filter: blur(15px);
}

.home-profile-button:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 30px rgba(120, 127, 220, 0.16);
}

.home-profile-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
}

.home-profile-name {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: #11236f;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(68, 79, 145, 0.18);
}

.home-profile-arrow {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-right: 2px solid rgba(88, 99, 173, 0.72);
  border-bottom: 2px solid rgba(88, 99, 173, 0.72);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.home-profile-button[aria-expanded="true"] .home-profile-arrow {
  transform: translateY(3px) rotate(225deg);
}

.home-profile-menu {
  position: absolute;
  top: 78px;
  right: 0;
  width: 176px;
  padding: 8px;
  border: 1px solid rgba(218, 224, 249, 0.88);
  border-radius: 18px;
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(78, 88, 150, 0.2);
  backdrop-filter: blur(10px);
}

.home-profile-menu[hidden] {
  display: none;
}

.home-profile-menu button {
  height: 42px;
  border: 0;
  border-radius: 12px;
  padding: 0 14px;
  color: #3d486a;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.home-profile-menu button:hover {
  color: #1c0aff;
  background: #edefff;
}

.home-profile-status {
  position: absolute;
  top: 124px;
  right: 0;
  width: max-content;
  max-width: 260px;
  margin: 0;
  padding: 9px 14px;
  border-radius: 999px;
  display: none;
  color: #2456ff;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(78, 88, 150, 0.14);
  font-size: 15px;
  font-weight: 600;
}

.home-profile-status.is-visible {
  display: block;
}

.stage.grid-active .bg {
  opacity: 0.2;
  filter: saturate(0.55) brightness(1.08);
}

.stage.chat-active .bg {
  display: none;
}

.grid-view {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 178, 83, 0.18) 0, transparent 16%),
    radial-gradient(circle at 2% 96%, rgba(92, 166, 255, 0.12) 0, transparent 19%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 255, 0.86) 100%);
}

.grid-page-cover {
  position: absolute;
  inset: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  pointer-events: none;
}

.grid-view::before,
.grid-view::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.grid-view::before {
  top: -22px;
  right: -10px;
  width: 154px;
  height: 102px;
  border-top: 3px solid rgba(222, 170, 79, 0.6);
  border-right: 3px solid rgba(222, 170, 79, 0.6);
  border-radius: 0 18px 0 0;
  transform: rotate(13deg);
}

.grid-view::after {
  right: 6px;
  bottom: 0;
  width: 72px;
  height: 72px;
  border-right: 3px solid rgba(222, 170, 79, 0.52);
  border-bottom: 3px solid rgba(222, 170, 79, 0.52);
  border-radius: 0 0 18px 0;
}

.grid-title {
  position: absolute;
  top: 24px;
  left: calc(170px + var(--wide-offset));
  z-index: 5;
  width: 412px;
  height: 110px;
}

.grid-title img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.grid-search {
  position: absolute;
  top: 86px;
  right: 117px;
  width: 418px;
  height: 57px;
  padding: 0 28px;
  border: 2px solid rgba(198, 205, 252, 0.86);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 24px rgba(84, 93, 153, 0.16);
}

.grid-search span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 5px solid #707b9f;
  border-radius: 50%;
}

.grid-search span::after {
  content: "";
  position: absolute;
  right: -11px;
  bottom: -8px;
  width: 16px;
  height: 5px;
  border-radius: 999px;
  background: #707b9f;
  transform: rotate(45deg);
}

.grid-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #273154;
  font-size: 18px;
  font-weight: 600;
}

.grid-search input::placeholder {
  color: #98a0b6;
}

.role-card-row {
  position: absolute;
  top: 220px;
  left: calc(55px + var(--wide-offset));
  z-index: 2;
  width: 1492px;
  height: 785px;
}

.role-card {
  position: absolute;
  top: 0;
  width: 316px;
  height: 792px;
  color: #30364b;
}

.role-purple {
  left: 0;
  --role-color: #6138d0;
  --role-soft: rgba(97, 56, 208, 0.22);
}

.role-gold {
  left: 294px;
  --role-color: #c47a24;
  --role-soft: rgba(196, 122, 36, 0.2);
}

.role-blue {
  left: 588px;
  --role-color: #0e83e0;
  --role-soft: rgba(14, 131, 224, 0.2);
}

.role-green {
  left: 882px;
  --role-color: #5e8754;
  --role-soft: rgba(94, 135, 84, 0.2);
}

.role-pink {
  left: 1176px;
  --role-color: #d64f8e;
  --role-soft: rgba(214, 79, 142, 0.2);
}

.role-card:hover {
  z-index: 6;
}

.role-card:hover .role-art {
  transform: translateY(-8px);
}

.role-art {
  position: relative;
  width: 316px;
  height: 694px;
  transition: transform 180ms ease;
}

.role-photo {
  position: absolute;
  top: 15px;
  left: 26px;
  width: 266px;
  height: 656px;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 100%);
}

.role-purple .role-photo {
  object-position: 50% 49%;
}

.role-gold .role-photo {
  object-position: 50% 50%;
}

.role-blue .role-photo {
  object-position: 51% 50%;
}

.role-green .role-photo {
  object-position: 49% 50%;
}

.role-pink .role-photo {
  object-position: 48% 50%;
}

.role-art::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 23px;
  bottom: 17px;
  height: 190px;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.98) 100%);
  clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 100%);
}

.role-frame {
  position: absolute;
  inset: 0;
  width: 316px;
  height: 694px;
  display: block;
  object-fit: fill;
  filter: drop-shadow(0 12px 18px var(--role-soft));
  pointer-events: none;
}

.role-copy {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -40px;
  z-index: 2;
  height: 180px;
  text-align: center;
}

.role-copy h2 {
  margin: 0;
  color: var(--role-color);
  font-family: "STKaiti", "KaiTi", "Noto Serif SC", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 2px rgba(255, 255, 255, 0.86);
}

.role-copy strong {
  min-width: 118px;
  height: 31px;
  margin: 16px auto 18px;
  padding: 0 18px;
  border: 2px solid var(--role-soft);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--role-color);
  background: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1;
}

.role-copy p {
  margin: 0;
  color: #515868;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.72;
}

.role-copy p::after {
  content: "";
  display: block;
  width: 95px;
  height: 12px;
  margin: 14px auto 0;
  border-bottom: 3px solid var(--role-color);
  border-radius: 50%;
  opacity: 0.72;
}

.chat-view {
  overflow: hidden;
  background: #eef1ff;
}

.chat-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.chat-panel {
  position: absolute;
  top: 42px;
  left: 24px;
  right: 38px;
  bottom: 34px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 78px rgba(96, 109, 180, 0.16);
  backdrop-filter: blur(8px);
}

.chat-user-line {
  position: absolute;
  top: 76px;
  right: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-user-line time {
  position: absolute;
  top: -34px;
  right: 110px;
  color: #8290bf;
  font-size: 17px;
}

.user-message {
  min-width: 500px;
  height: 64px;
  padding: 0 31px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  color: #1b2354;
  background: linear-gradient(180deg, #e7e6ff 0%, #dbdafb 100%);
  font-size: 22px;
  font-weight: 500;
  box-shadow: 0 10px 22px rgba(127, 127, 219, 0.1);
}

.chat-user-avatar {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(68, 79, 145, 0.16);
}

.chat-ai-row {
  position: absolute;
  top: 186px;
  left: 72px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.chat-ai-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 32% 24%, #9b98ff 0%, #5a4df4 72%);
  box-shadow: 0 10px 22px rgba(69, 74, 224, 0.2);
}

.chat-ai-avatar img {
  width: 34px;
  height: 31px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.chat-ai-body {
  color: #253051;
}

.chat-ai-name {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.chat-ai-name strong {
  color: #1f2b62;
  font-size: 20px;
  font-weight: 700;
}

.chat-ai-name time {
  color: #7e8bb5;
  font-size: 18px;
}

.chat-ai-body p {
  margin: 12px 0 0;
  color: #273154;
  font-size: 19px;
  line-height: 1.4;
}

.chat-result-card {
  position: absolute;
  top: 286px;
  left: 50%;
  width: 354px;
  height: 482px;
  margin-left: -177px;
  overflow: hidden;
  border: 2px solid rgba(221, 221, 255, 0.86);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(75, 83, 160, 0.14);
}

.chat-result-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 38%;
}

.chat-card-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 175px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.82) 53%, #fff 100%);
}

.chat-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  text-align: center;
}

.chat-card-copy h2 {
  margin: 0 0 14px;
  color: #221aa8;
  font-family: "STKaiti", "KaiTi", "Noto Serif SC", serif;
  font-size: 38px;
  line-height: 1;
}

.chat-card-copy strong {
  height: 26px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #241eb7;
  background: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.chat-followup {
  position: absolute;
  left: 160px;
  bottom: 154px;
}

.chat-followup p {
  margin: 0 0 22px;
  color: #273154;
  font-size: 21px;
  line-height: 1.4;
}

.chat-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.chat-actions button {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  color: #8a93c6;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chat-input-bar {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 38px;
  height: 80px;
  padding: 0 24px;
  border: 2px solid #d8dcfb;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.chat-input-bar input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #273154;
  font: inherit;
  font-size: 19px;
}

.chat-input-bar input::placeholder {
  color: #9aa2c2;
}

.chat-input-bar button {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #776dff 0%, #3328ed 100%);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(70, 62, 237, 0.28);
}

.ai-title {
  position: absolute;
  top: -84px;
  left: calc(313px + var(--wide-offset));
  z-index: 1;
  width: 872px;
  height: auto;
  pointer-events: none;
}

.spark-left {
  position: absolute;
  top: 79px;
  left: calc(217px + var(--wide-offset));
  z-index: 2;
  width: 96px;
  height: 151px;
  object-fit: contain;
  transform: rotate(180deg);
  pointer-events: none;
}

.spark-right {
  position: absolute;
  top: 106px;
  left: calc(1204px + var(--wide-offset));
  z-index: 2;
  width: 85px;
  height: 78px;
  object-fit: contain;
  pointer-events: none;
}

.login {
  position: absolute;
  top: 51px;
  right: 32px;
  z-index: 4;
  min-width: 168px;
  height: 55px;
  padding: 0 28px;
  border: 0;
  border-radius: 32.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1818fe;
  background: #e1e2fc;
  box-shadow: 1px 2px 3.7px #7982fa;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.login.is-hidden {
  display: none;
}

.upload-panel {
  position: relative;
  z-index: 3;
  width: 1348px;
  min-height: 696px;
  margin: 274px 0 110px calc(39px + var(--wide-offset));
  display: grid;
  grid-template-columns: 687px 554px;
  column-gap: 38px;
  align-items: center;
  padding: 0 60px 0 0;
  border-radius: 43px;
  background: var(--panel);
}

.preview-area {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 18px;
}

.preview-area.has-upload {
  justify-content: center;
  padding-left: 0;
}

.phone-preview {
  width: 640px;
  height: 640px;
  object-fit: contain;
  filter: drop-shadow(2px 6px 4.5px rgba(155, 176, 244, 0.36));
}

.phone-preview.uploaded-file-preview {
  width: 560px;
  height: 560px;
  padding: 18px;
  border: 2px solid #e0e3ff;
  border-radius: 32px;
  background: #f8f9ff;
  object-fit: contain;
  filter: drop-shadow(2px 10px 16px rgba(155, 176, 244, 0.24));
}

.upload-area {
  position: relative;
  align-self: start;
  height: 510px;
  margin-top: 99px;
}

.primary-upload {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 103px;
  border: 0;
  border-radius: 51.5px;
  color: #fff;
  background: linear-gradient(180deg, #818cfa 0%, var(--blue) 100%);
  font-size: 32px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(38, 32, 245, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-upload:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(38, 32, 245, 0.22);
}

.drop-zone {
  position: absolute;
  top: 131px;
  left: 0;
  width: 100%;
  height: 114px;
  border: 2px dashed #c3c7ff;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #2c27f6;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.drop-zone strong {
  font-size: 22px;
  font-weight: 500;
}

.drop-zone span {
  color: #8f95ab;
  font-size: 16px;
}

.drop-zone.drag-over {
  border-color: var(--blue);
  background: #f2f3ff;
  transform: scale(1.01);
}

.drop-zone.uploaded {
  border-style: solid;
  border-color: #7e88ff;
  background: #f5f7ff;
}

.drop-zone.uploaded strong {
  max-width: 88%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drop-zone.error {
  border-color: #ff8a8a;
  background: #fff7f7;
  color: #d93636;
}

.drop-zone.error span {
  color: #c45b5b;
}

.upload-area h1 {
  position: absolute;
  top: 295px;
  left: 22px;
  width: 541px;
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.quick-actions {
  position: absolute;
  top: 423px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 177px);
  gap: 26px;
  margin-left: -15px;
}

.quick-action {
  height: 87px;
  border: 2px solid #e0e0fc;
  border-radius: 43.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue-2);
  background: #fff;
  font-size: 20px;
  cursor: pointer;
}

.quick-action:first-child {
  border-radius: 27px;
}

.quick-action img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
