/* Clip Check sheet in MeDia Locker modal */
.gs-clip-sheet {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 12050;
  padding: 0 max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom))
    max(0.75rem, env(safe-area-inset-left));
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.gs-clip-sheet.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.gs-clip-sheet__panel {
  max-width: 26rem;
  margin: 0 auto;
  padding: 1rem 1rem 0.85rem;
  border-radius: 18px 18px 14px 14px;
  background: rgba(18, 18, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  font-family: "DM Sans", system-ui, sans-serif;
}

.gs-clip-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.gs-clip-sheet__title {
  /* Outfit — Syne clips g/p/y descenders at small sizes in Chrome */
  font-family: "Outfit", "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.gs-clip-sheet__close {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.gs-clip-sheet__progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.gs-clip-sheet__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gk, #c8ff00);
  transition: width 0.25s ease;
}

.gs-clip-sheet__status {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.gs-clip-sheet__score-label {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
  line-height: 1.35;
}

.gs-clip-sheet__scores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.gs-clip-sheet__score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
}

.gs-clip-sheet__score-val {
  font-weight: 700;
  color: var(--gk, #c8ff00);
}

.gs-clip-sheet__verdict {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.gs-clip-sheet__enhance-wrap[hidden] {
  display: none !important;
}

.gs-clip-sheet__enhance-wrap:not([hidden]) {
  display: block;
  opacity: 1;
}

.gs-clip-sheet__enhance-wrap {
  margin-bottom: 0.65rem;
}

.gs-clip-sheet__enhance-wrap.is-visible {
  animation: edgeEnhancerPop 0.45s cubic-bezier(0.34, 1.35, 0.64, 1);
}

.gs-clip-sheet__btn--enhance {
  width: 100%;
  min-height: 2.85rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, #60a5fa 0%, #2563eb 55%, #1d4ed8 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.42);
}

.gs-clip-sheet__btn--enhance:active {
  transform: scale(0.98);
}

.gs-clip-sheet__enhance-result {
  margin-top: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.28);
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.gs-clip-sheet__enhance-result[hidden] {
  display: none !important;
}

.edge-enhance-plan__head {
  margin: 0 0 0.55rem;
  font-weight: 700;
  color: #fff;
}

.edge-enhance-plan__steps {
  margin: 0 0 0.65rem;
  padding-left: 1.15rem;
}

.edge-enhance-plan__steps li {
  margin-bottom: 0.45rem;
}

.edge-enhance-plan__caption {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.edge-enhance-plan__caption span {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gs-clip-sheet__actions {
  display: flex;
  gap: 0.5rem;
}

.gs-clip-sheet__btn {
  flex: 1;
  min-height: 2.5rem;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.gs-clip-sheet__btn--primary {
  background: var(--gk, #c8ff00);
  color: #0a0a0a;
}

.gs-clip-sheet__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.gs-clip-sheet.is-busy .gs-clip-sheet__score-val {
  animation: gsPulse 0.55s ease infinite alternate;
}

.mc-modal-tool--clip-check svg {
  width: 1.35rem;
  height: 1.35rem;
}

.mc-modal-tool--clip-check .mc-modal-tool__edge-e {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-family: Syne, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gk, #00f52a);
  text-transform: lowercase;
}

/* Welcome banner after Get Seen signup */
.gs-welcome-banner {
  margin: 0 0.75rem 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(200, 255, 0, 0.28);
  background: rgba(200, 255, 0, 0.07);
}

.gs-welcome-banner__title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #fff;
}

.gs-welcome-banner__text {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.gs-welcome-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gs-welcome-banner__btn {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: none;
  background: var(--gk, #c8ff00);
  color: #0a0a0a;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.gs-welcome-banner__dismiss {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  cursor: pointer;
}
