/* Shared styles for the exported GenCite flow. */
.gc-model-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid;
}
.gc-model-row.is-complete {
  background: rgba(2, 132, 199, 0.05);
  border-color: rgba(2, 132, 199, 0.16);
}
.gc-model-row.is-waiting {
  background: #f9fcfd;
  border-color: rgba(14, 36, 51, 0.08);
}
.gc-model-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.gc-model-chatgpt {
  background-color: #10a37f;
}
.gc-model-gemini {
  background-color: #4285f4;
}
.gc-model-claude {
  background-color: #d97706;
}
.gc-model-perplexity {
  background-color: #0284c7;
}
.gc-variation-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1.5px solid;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.gc-variation-card.is-selected {
  background: rgba(2, 132, 199, 0.05);
  border-color: rgba(2, 132, 199, 0.3);
}
.gc-variation-card.is-unselected {
  background: #fff;
  border-color: rgba(14, 36, 51, 0.1);
}
.gc-variation-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  margin-top: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid;
}
.gc-variation-check.is-selected {
  background: #0284c7;
  border-color: #0284c7;
}
.gc-variation-check.is-unselected {
  background: #fff;
  border-color: rgba(14, 36, 51, 0.2);
}
.gc-result-fill {
  height: 100%;
  border-radius: 3px;
}
.gc-width-0 {
  width: 0%;
}
.gc-width-20 {
  width: 20%;
}
.gc-width-40 {
  width: 40%;
}
.gc-width-60 {
  width: 60%;
}
.gc-width-80 {
  width: 80%;
}
.gc-width-100 {
  width: 100%;
}

/* Analysis loading panel — ocean-glass sonar. Run-again button and loader keyframes. */
.gc-analysis-status {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 60px auto;
  padding: 44px 36px 38px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  text-align: center;
  box-shadow: 0 18px 48px rgba(14, 36, 51, 0.1);
}
.gc-analysis-status.is-loading { animation: gc-loader-enter 560ms cubic-bezier(.22, 1, .36, 1) both; }
/* Modal variant: the same glass card, centered inside the overlay backdrop
   (gc-style-49044ef5) rather than flowing at the top of the results. */
.gc-analysis-status--modal {
  margin: 0;
  width: min(600px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
}
.gc-analysis-status.is-loading::before,
.gc-analysis-status.is-loading::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
}
.gc-analysis-status.is-loading::before {
  top: -90px;
  left: -70px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.55), transparent 70%);
  animation: gc-loader-blob-a 9s ease-in-out infinite;
}
.gc-analysis-status.is-loading::after {
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(134, 239, 172, 0.5), transparent 70%);
  animation: gc-loader-blob-b 11s ease-in-out infinite;
}
html[data-theme="dark"] .gc-analysis-status.is-loading::before,
body.dark-mode .gc-analysis-status.is-loading::before {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
}
html[data-theme="dark"] .gc-analysis-status.is-loading::after,
body.dark-mode .gc-analysis-status.is-loading::after {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.16), transparent 70%);
}
.gc-analysis-status > * { position: relative; z-index: 1; }
.gc-analysis-status h2 {
  margin: 16px 0 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0284c7;
  background-image: linear-gradient(90deg, #075985, #0284c7, #059669, #075985);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gc-title-flow 5s linear infinite;
}
html[data-theme="dark"] .gc-analysis-status h2,
body.dark-mode .gc-analysis-status h2 {
  background-image: linear-gradient(90deg, #7dd3fc, #38bdf8, #6ee7b7, #7dd3fc);
}
.gc-analysis-status p { margin: 0; color: #4a6475; font-size: 13.5px; line-height: 1.6; }
.gc-analysis-status.is-error { border-color: rgba(179, 38, 30, 0.18); }
.gc-provider-warning {
  max-width: 720px;
  margin: 0 auto 20px;
  padding: 12px 16px;
  border: 1px solid rgba(13, 148, 136, 0.28);
  border-radius: 12px;
  background: rgba(125, 211, 252, 0.12);
  color: #075985;
  font-size: 13.5px;
  line-height: 1.5;
}
.gc-analysis-orb { position: relative; width: 84px; height: 84px; margin: 0 auto 10px; display: grid; place-items: center; }
.gc-analysis-orb-core {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #0284c7 55%, #34d399);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.35), inset 0 -2px 6px rgba(255, 255, 255, 0.4);
  animation: gc-orb-breathe 2s ease-in-out infinite;
}
.gc-analysis-orb-ring,
.gc-analysis-orb::before,
.gc-analysis-orb::after {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(2, 132, 199, 0.45);
  border-radius: 50%;
  animation: gc-sonar 2.4s ease-out infinite;
}
.gc-analysis-orb::before { content: ''; animation-delay: 0.8s; }
.gc-analysis-orb::after { content: ''; animation-delay: 1.6s; border-color: rgba(5, 150, 105, 0.4); }
.gc-analysis-progress { width: min(340px, 100%); height: 7px; margin: 26px auto 0; overflow: hidden; border-radius: 999px; background: rgba(2, 132, 199, 0.1); }
.gc-analysis-progress-fill {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8, #0284c7, #34d399);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
  animation: gc-progress-glide 1.9s cubic-bezier(.4, 0, .2, 1) infinite;
}
.gc-analysis-steps { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.gc-analysis-steps span { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, #38bdf8, #34d399); opacity: .25; animation: gc-step-wave 1.4s ease-in-out infinite; }
.gc-analysis-steps span:nth-child(2) { animation-delay: 180ms; }
.gc-analysis-steps span:nth-child(3) { animation-delay: 360ms; }
.gc-analysis-tip { display: inline-flex; align-items: center; gap: 7px; margin: 18px auto 0; padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.55); border: 1px solid rgba(255, 255, 255, 0.8); color: #5b7f8f; font-size: 12px; font-weight: 600; }
.gc-analysis-models { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.gc-analysis-model-chip {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 12px rgba(14, 36, 51, 0.06);
  color: #0e2433;
  font-size: 12.5px;
  font-weight: 700;
}
.gc-analysis-model-chip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  transform: translateX(-250%) skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  animation: gc-chip-shimmer 2.6s ease infinite;
}
.gc-analysis-model-chip:nth-child(2)::after { animation-delay: 1.3s; }
html[data-theme="dark"] .gc-analysis-model-chip,
body.dark-mode .gc-analysis-model-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f8fafc;
  box-shadow: none;
}
html[data-theme="dark"] .gc-analysis-tip,
body.dark-mode .gc-analysis-tip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #94a3b8;
}
.gc-analysis-retry { margin-top: 18px; padding: 11px 20px; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 10px; background: linear-gradient(135deg, #38bdf8, #34d399); color: #fff; font: inherit; font-weight: 600; cursor: pointer; box-shadow: 0 8px 20px rgba(56, 189, 248, 0.32); }
.gc-run-again { padding: 12px 20px; border: 1px solid rgba(2, 132, 199, 0.22); border-radius: 12px; background: rgba(2, 132, 199, 0.07); color: #0284c7; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; }
.gc-run-again:hover:not(:disabled) { background: rgba(2, 132, 199, 0.12); }
.gc-cumulative-note { margin-top: 8px; color: #0284c7; font-size: 11.5px; font-weight: 600; }
.gc-variation-loading { display: flex; align-items: center; gap: 10px; margin-top: 12px; color: #0284c7; font-size: 12.5px; font-weight: 600; }
.gc-variation-throbber { width: 16px; height: 16px; flex: 0 0 auto; border: 2px solid rgba(2, 132, 199, .18); border-top-color: #0284c7; border-right-color: #4285f4; border-radius: 50%; animation: gc-throbber-spin .75s linear infinite; }
button:disabled { cursor: not-allowed; opacity: .55; }
@keyframes gc-loader-enter { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes gc-orb-breathe { 0%, 100% { transform: scale(.9); opacity: .82; } 50% { transform: scale(1.1); opacity: 1; } }
@keyframes gc-sonar { 0% { transform: scale(.38); opacity: .9; } 70% { opacity: .1; } 100% { transform: scale(1.12); opacity: 0; } }
@keyframes gc-progress-glide { 0% { transform: translateX(-110%); } 50% { transform: translateX(65%); } 100% { transform: translateX(225%); } }
@keyframes gc-step-wave { 0%, 100% { opacity: .25; transform: translateY(0) scale(.85); } 50% { opacity: 1; transform: translateY(-4px) scale(1); } }
@keyframes gc-chip-shimmer { 0%, 55% { transform: translateX(-250%) skewX(-20deg); } 100% { transform: translateX(350%) skewX(-20deg); } }
@keyframes gc-title-flow { to { background-position: -250% 0; } }
@keyframes gc-loader-blob-a { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, 24px) scale(1.12); } }
@keyframes gc-loader-blob-b { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-26px, -20px) scale(1.1); } }
@keyframes gc-throbber-spin { to { transform: rotate(360deg); } }
.gc-try-demo-link {
  display: block;
  margin-top: 14px;
  color: #6d5dfc;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.gc-try-demo-link:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .gc-analysis-status.is-loading,
  .gc-analysis-status.is-loading::before,
  .gc-analysis-status.is-loading::after,
  .gc-analysis-status h2,
  .gc-analysis-orb-core,
  .gc-analysis-orb-ring,
  .gc-analysis-orb::before,
  .gc-analysis-orb::after,
  .gc-analysis-model-chip::after,
  .gc-analysis-progress-fill,
  .gc-analysis-steps span,
  .gc-variation-throbber { animation: none; }
  .gc-analysis-progress-fill { width: 100%; transform: none; opacity: .55; }
  .gc-analysis-orb::before,
  .gc-analysis-orb::after { opacity: .3; transform: scale(.9); }
  .gc-analysis-model-chip::after { display: none; }
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
@keyframes flowGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===========================================================================
   Self-contained Try It demo
   Uses the same sidebar, warm canvas, glass cards, and ocean gradient language
   as the authenticated product flow while keeping the Firebase demo portable.
   ========================================================================== */
.gc-demo-shell button,
.gc-demo-shell input {
  font: inherit;
}

.gc-demo-shell,
.gc-demo-shell * {
  box-sizing: border-box;
}

.gc-demo-shell button {
  border: 0;
}

.gc-demo-main {
  height: 100vh;
  overflow-y: auto;
  background:
    radial-gradient(circle at 86% 7%, rgba(125, 211, 252, 0.2), transparent 25%),
    radial-gradient(circle at 10% 92%, rgba(134, 239, 172, 0.17), transparent 27%),
    #f6fafc;
}

.gc-demo-sidebar .gc-style-6258706e {
  margin-bottom: 34px;
}

.gc-demo-badge {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gc-demo-nav {
  width: 100%;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.gc-demo-nav.gc-style-c07e03a1 {
  background: rgba(5, 31, 45, 0.42);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 8px 22px rgba(5, 31, 45, 0.14);
}

.gc-demo-nav.gc-style-f202ff98 {
  opacity: 1;
  background: rgba(5, 31, 45, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.gc-demo-nav.gc-style-f202ff98 .gc-style-191ce14d,
.gc-demo-nav.gc-style-f202ff98 .gc-style-b661a8ea {
  color: #fff;
}

.gc-demo-nav:disabled {
  cursor: default;
  opacity: 0.78;
}

.gc-demo-sidebar-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0 12px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11.5px;
  font-weight: 600;
}

.gc-demo-live-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, 0.14);
}

.gc-demo-theme-toggle {
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gc-demo-theme-track {
  display: block;
  width: 42px;
  height: 23px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 180ms ease;
}

.gc-demo-theme-thumb {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(14, 36, 51, 0.25);
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
}

.gc-demo-theme-toggle[aria-checked="true"] .gc-demo-theme-track {
  background: rgba(14, 36, 51, 0.5);
}

.gc-demo-theme-toggle[aria-checked="true"] .gc-demo-theme-thumb {
  transform: translateX(19px);
}

.gc-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(246, 250, 252, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gc-demo-provider-pill,
.gc-demo-selection-count {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(2, 132, 199, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #0284c7;
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 5px 16px rgba(14, 36, 51, 0.05);
}

.gc-demo-auth,
.gc-demo-loading {
  min-height: calc(100vh - 125px);
  display: grid;
  place-items: center;
  padding: 40px;
}

.gc-demo-auth[hidden],
.gc-demo-screen[hidden],
#demo[hidden] {
  display: none;
}

.gc-demo-card {
  position: relative;
  overflow: hidden;
}

.gc-demo-card::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.2), transparent 70%);
  pointer-events: none;
}

.gc-demo-card > * {
  position: relative;
  z-index: 1;
}

.gc-demo-signin-card {
  width: min(480px, 100%);
  padding: 44px 40px;
  text-align: center;
}

.gc-demo-signin-card h2,
.gc-demo-results-top h2 {
  margin: 8px 0 10px;
  color: #0e2433;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.gc-demo-signin-card > p:not(.gc-demo-eyebrow, .gc-demo-error) {
  max-width: 380px;
  margin: 0 auto;
  color: #4a6475;
  font-size: 14px;
  line-height: 1.65;
}

.gc-demo-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(52, 211, 153, 0.12));
  color: #0284c7;
}

.gc-demo-eyebrow {
  margin: 0 0 7px;
  color: #0284c7;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gc-demo-google {
  display: block;
  margin: 25px auto 0;
}

.gc-demo-error {
  margin: 13px 0 0;
  color: #b3261e;
  font-size: 12.5px;
  line-height: 1.5;
}

.gc-demo-screen {
  animation: gc-demo-enter 360ms cubic-bezier(.22, 1, .36, 1) both;
}

.gc-demo-screen .gc-style-db108080 {
  margin-bottom: 28px;
}

.gc-demo-screen .gc-style-408cd6c7 {
  width: 100%;
  box-sizing: border-box;
}

.gc-demo-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.gc-demo-actions--end {
  justify-content: flex-end;
}

.gc-demo-back {
  padding: 8px 0;
  background: transparent;
  color: #4a6475;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}

.gc-demo-back:hover {
  color: #0284c7;
}

.gc-demo-processing .gc-style-c741b39e {
  margin-bottom: 22px;
}

.gc-demo-generation-error {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(179, 38, 30, 0.18);
  border-radius: 12px;
  background: rgba(179, 38, 30, 0.055);
}

.gc-demo-generation-error p {
  margin: 0;
  color: #b3261e;
  font-size: 12.5px;
  line-height: 1.5;
}

.gc-demo-generation-error .gc-analysis-retry {
  margin-top: 12px;
}

.gc-demo-models {
  display: grid;
  gap: 9px;
  max-width: 340px;
  margin: 0 auto;
  text-align: left;
}

.gc-demo-models .gc-model-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #0e2433;
  font-size: 13px;
  font-weight: 650;
}

.gc-demo-models .gc-model-row b {
  color: #7d95a3;
  font-size: 11.5px;
}

.gc-demo-review {
  width: 100%;
  min-height: calc(100vh - 126px);
  display: flex;
  justify-content: center;
  padding: 38px 40px 60px;
}

.gc-demo-review-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.gc-demo-variation {
  width: 100%;
  color: inherit;
  text-align: left;
}

.gc-demo-variation-copy {
  display: grid;
  gap: 4px;
}

.gc-demo-variation-copy strong {
  color: #0e2433;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

.gc-demo-variation-copy small {
  color: #7d95a3;
  font-size: 11px;
}

.gc-demo-run-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(14, 36, 51, 0.08);
  border-radius: 12px;
  background: #f9fcfd;
  color: #4a6475;
  font-size: 12.5px;
  font-weight: 600;
}

.gc-demo-loading .gc-analysis-status {
  width: min(600px, 100%);
  margin: 0;
}

.gc-demo-results {
  padding: 38px 40px 70px;
}

.gc-demo-results-wrap {
  width: min(820px, 100%);
  margin: 0 auto;
}

.gc-demo-results-top {
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(14, 36, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(14, 36, 51, 0.07);
}

.gc-demo-results-top p:last-child {
  margin: 0;
  color: #4a6475;
  font-size: 13.5px;
  line-height: 1.55;
}

.gc-demo-score {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 60%, transparent 62%),
    conic-gradient(#0284c7 var(--score, 0%), rgba(2, 132, 199, 0.09) 0);
  text-align: center;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.1);
}

.gc-demo-score strong {
  color: #0e2433;
  font-size: 28px;
  line-height: 1;
}

.gc-demo-score span {
  margin-top: 5px;
  color: #7d95a3;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gc-demo-provider-warning {
  margin-bottom: 16px;
  padding: 12px 15px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 12px;
  background: rgba(254, 243, 199, 0.65);
  color: #92400e;
  font-size: 12.5px;
}

.gc-demo-query-results {
  display: grid;
  gap: 12px;
}

.gc-demo-result-card {
  padding: 20px 22px;
  border: 1px solid rgba(14, 36, 51, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 18px rgba(14, 36, 51, 0.045);
}

.gc-demo-result-card h3 {
  margin: 0 0 16px;
  color: #0e2433;
  font-size: 14px;
  font-weight: 650;
}

.gc-demo-result-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gc-demo-result-model {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
}

.gc-demo-result-model > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4a6475;
  font-size: 11.5px;
  font-weight: 600;
}

.gc-demo-result-model > strong {
  color: #0e2433;
  font-size: 11.5px;
}

.gc-demo-result-track {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.08);
}

.gc-demo-result-track span {
  display: block;
  width: var(--model-score, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8, #0284c7, #34d399);
}

html[data-theme="dark"] .gc-demo-main,
body.dark-mode .gc-demo-main {
  background:
    radial-gradient(circle at 86% 7%, rgba(56, 189, 248, 0.08), transparent 25%),
    radial-gradient(circle at 10% 92%, rgba(52, 211, 153, 0.07), transparent 27%),
    var(--bg-page) !important;
}

html[data-theme="dark"] .gc-demo-header,
body.dark-mode .gc-demo-header {
  background: rgba(10, 13, 20, 0.74);
  border-color: var(--border-color);
}

html[data-theme="dark"] .gc-demo-provider-pill,
html[data-theme="dark"] .gc-demo-selection-count,
body.dark-mode .gc-demo-provider-pill,
body.dark-mode .gc-demo-selection-count {
  background: rgba(22, 28, 44, 0.75);
  border-color: var(--border-color);
  color: var(--text-accent);
}

html[data-theme="dark"] .gc-demo-signin-card h2,
html[data-theme="dark"] .gc-demo-results-top h2,
html[data-theme="dark"] .gc-demo-result-card h3,
html[data-theme="dark"] .gc-demo-variation-copy strong,
html[data-theme="dark"] .gc-demo-result-model > strong,
html[data-theme="dark"] .gc-demo-score strong,
body.dark-mode .gc-demo-signin-card h2,
body.dark-mode .gc-demo-results-top h2,
body.dark-mode .gc-demo-result-card h3,
body.dark-mode .gc-demo-variation-copy strong,
body.dark-mode .gc-demo-result-model > strong,
body.dark-mode .gc-demo-score strong {
  color: var(--text-main);
}

html[data-theme="dark"] .gc-demo-signin-card > p:not(.gc-demo-eyebrow, .gc-demo-error),
html[data-theme="dark"] .gc-demo-results-top p:last-child,
html[data-theme="dark"] .gc-demo-result-model > span,
html[data-theme="dark"] .gc-demo-run-summary,
body.dark-mode .gc-demo-signin-card > p:not(.gc-demo-eyebrow, .gc-demo-error),
body.dark-mode .gc-demo-results-top p:last-child,
body.dark-mode .gc-demo-result-model > span,
body.dark-mode .gc-demo-run-summary {
  color: var(--text-muted);
}

html[data-theme="dark"] .gc-demo-results-top,
html[data-theme="dark"] .gc-demo-result-card,
html[data-theme="dark"] .gc-demo-run-summary,
body.dark-mode .gc-demo-results-top,
body.dark-mode .gc-demo-result-card,
body.dark-mode .gc-demo-run-summary {
  background: var(--bg-card);
  border-color: var(--border-color);
}

html[data-theme="dark"] .gc-demo-score,
body.dark-mode .gc-demo-score {
  background:
    radial-gradient(circle, var(--bg-card) 60%, transparent 62%),
    conic-gradient(#2dd4bf var(--score, 0%), rgba(255, 255, 255, 0.08) 0);
}

@keyframes gc-demo-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 800px) {
  .gc-demo-shell.gc-style-387efa28 {
    display: block;
    overflow: visible;
  }

  .gc-demo-sidebar.gc-style-51e8b94d {
    width: 100%;
    height: auto;
  }

  .gc-demo-sidebar .gc-style-a771f830 {
    height: auto;
    padding: 18px 20px;
  }

  .gc-demo-sidebar .gc-style-6258706e {
    margin-bottom: 14px;
  }

  .gc-demo-sidebar .gc-style-cde872e3,
  .gc-demo-sidebar-note,
  .gc-demo-sidebar .gc-sidebar-theme-wrapper {
    display: none;
  }

  .gc-demo-main.gc-style-243c02bc {
    height: auto;
    min-height: calc(100vh - 70px);
    overflow: visible;
  }

  .gc-demo-header {
    padding: 22px 24px;
  }

  .gc-demo-provider-pill {
    display: none;
  }

  .gc-demo-main .gc-style-9beff3ef {
    padding-right: 24px;
    padding-left: 24px;
  }

  .gc-demo-main .gc-style-59d63713,
  .gc-demo-main .gc-demo-review,
  .gc-demo-main .gc-demo-results,
  .gc-demo-main .gc-demo-auth,
  .gc-demo-main .gc-demo-loading {
    min-height: 0;
    padding: 30px 20px 48px;
  }

  .gc-demo-results-top {
    grid-template-columns: 1fr 110px;
    padding: 22px;
  }
}

@media (max-width: 540px) {
  .gc-demo-card,
  .gc-demo-signin-card {
    padding: 28px 22px;
  }

  .gc-demo-review-heading,
  .gc-demo-results-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .gc-demo-score {
    width: 108px;
  }

  .gc-demo-result-models {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gc-demo-screen,
  .gc-demo-theme-track,
  .gc-demo-theme-thumb {
    animation: none;
    transition: none;
  }
}
@keyframes blobDrift1 {
  0%,
  100% {
    transform: translate(-10%, -10%) scale(1);
  }
  50% {
    transform: translate(10%, 5%) scale(1.15);
  }
}
@keyframes blobDrift2 {
  0%,
  100% {
    transform: translate(5%, 10%) scale(1);
  }
  50% {
    transform: translate(-8%, -12%) scale(1.1);
  }
}
@keyframes blobDrift3 {
  0%,
  100% {
    transform: translate(0%, 0%) scale(1);
  }
  50% {
    transform: translate(6%, -6%) scale(1.08);
  }
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
@keyframes flowGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes blobDrift1 {
  0%,
  100% {
    transform: translate(-10%, -10%) scale(1);
  }
  50% {
    transform: translate(8%, 6%) scale(1.1);
  }
}
@keyframes blobDrift2 {
  0%,
  100% {
    transform: translate(5%, 10%) scale(1);
  }
  50% {
    transform: translate(-6%, -8%) scale(1.08);
  }
}
@keyframes shimmerSweep {
  0% {
    transform: translateX(-150%) skewX(-20deg);
  }
  100% {
    transform: translateX(250%) skewX(-20deg);
  }
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
@keyframes flowGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes blobDrift1 {
  0%,
  100% {
    transform: translate(-10%, -10%) scale(1);
  }
  50% {
    transform: translate(8%, 6%) scale(1.1);
  }
}
@keyframes blobDrift2 {
  0%,
  100% {
    transform: translate(5%, 10%) scale(1);
  }
  50% {
    transform: translate(-6%, -8%) scale(1.08);
  }
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
@keyframes flowGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes blobDrift1 {
  0%,
  100% {
    transform: translate(-10%, -10%) scale(1);
  }
  50% {
    transform: translate(8%, 6%) scale(1.1);
  }
}
@keyframes blobDrift2 {
  0%,
  100% {
    transform: translate(5%, 10%) scale(1);
  }
  50% {
    transform: translate(-6%, -8%) scale(1.08);
  }
}
@keyframes spin360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes dotBounce {
  0%,
  80%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.gc-after-47e8434f::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  animation: shimmerSweep 2.6s ease-in-out infinite;
}
.gc-focus-6b1fdee2:focus {
  border-color: #0284c7;
}
.gc-hover-871417a1:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(2, 132, 199, 0.28);
}
.gc-hover-b727c613:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(10, 27, 40, 0.26);
}
.gc-hover-ee33bb35:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(2, 132, 199, 0.32);
}
.gc-style-00a543ad {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 520px;
}
.gc-style-06b0a259 {
  font-size: 12.5px;
  font-weight: 600;
  color: #0e2433;
}
.gc-style-07261e2e {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}
.gc-style-0ac49a6e {
  font-size: 11.5px;
  color: #7d95a3;
  margin-top: 3px;
}
.gc-style-0adc8b1a {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(2, 132, 199, 0.35);
  animation: pulseRing 2.2s ease-out infinite;
}
.gc-style-0cac53d2 {
  font-size: 12.5px;
  color: #4a6475;
  margin-bottom: 8px;
}
.gc-style-0d0227ad {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(14, 36, 51, 0.25);
}
.gc-style-117a0dcc {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gc-style-12675149 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gc-style-13153c04 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  color: #0e2433;
}
.gc-style-168f0d52 {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid rgba(5, 150, 105, 0.3);
  animation: pulseRing 2.2s ease-out infinite 0.6s;
}
.gc-style-16d2cc08 {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(14, 36, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-style-191ce14d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
}
.gc-style-1b6b5561 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.97);
  color: #0a1b28;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 27, 40, 0.2);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.gc-style-1d180c9d {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(14, 36, 51, 0.08);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 6px 16px rgba(14, 36, 51, 0.04);
}
.gc-style-1dbd7f48 {
  display: flex;
  gap: 10px;
}
.gc-style-1ddc1d44 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: #0e2433;
  letter-spacing: -0.01em;
}
.gc-style-1e1cbca4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  margin-bottom: 10px;
}
.gc-style-1e416317 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #0e2433;
  letter-spacing: -0.01em;
}
.gc-style-1e9cc0f6 {
  margin: 0;
  font-size: 13.5px;
  color: #4a6475;
  line-height: 1.6;
}
.gc-style-1f93fa9a {
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(14, 36, 51, 0.14);
  background: transparent;
  color: #3a5468;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.gc-style-233d14a3 {
  position: relative;
  margin-bottom: 24px;
}
.gc-style-243c02bc {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.gc-style-24553a0b {
  width: 100%;
  max-width: 520px;
}
.gc-style-25d80f93 {
  font-weight: 600;
}
.gc-style-277fb4a2 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.gc-style-2a305de6 {
  font-weight: 700;
  color: #0e2433;
}
.gc-style-2bd6c5e5 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.82),
    rgba(2, 132, 199, 0.62)
  );
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(2, 132, 199, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.gc-style-2d3b374a {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  font-family:
    "Outfit",
    -apple-system,
    sans-serif;
  background: linear-gradient(
    120deg,
    #0284c7,
    #0d9488,
    #059669,
    #0891b2,
    #0284c7
  );
  background-size: 400% 400%;
  animation: flowGradient 24s ease infinite;
}
.gc-style-2d849362 {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: #b3261e;
}
.gc-style-2db23746 {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: #0284c7;
}
.gc-style-2e9f52b4 {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gc-style-2fa076ce {
  background: #fff;
  border: 1px solid rgba(14, 36, 51, 0.08);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 12px 32px rgba(14, 36, 51, 0.06);
}
.gc-style-31bcf59b {
  background: #fff;
  border: 1px solid rgba(14, 36, 51, 0.08);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 6px 16px rgba(14, 36, 51, 0.04);
}
.gc-style-34267ea3 {
  width: 100%;
  max-width: 620px;
}
.gc-style-36c9609d {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: rgba(2, 132, 199, 0.06);
  border-bottom: 1px solid rgba(2, 132, 199, 0.12);
}
.gc-style-379ba135 {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(14, 36, 51, 0.14);
  background: transparent;
  color: #0e2433;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.gc-style-380f22e1 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  color: #0e2433;
  letter-spacing: -0.01em;
}
.gc-style-387efa28 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  font-family:
    "Outfit",
    -apple-system,
    sans-serif;
  background: #f6fafc;
  display: flex;
}
.gc-style-39ab56b0 {
  margin: 0 0 18px;
  font-size: 12.5px;
  color: #b3261e;
}
.gc-style-3c90df07 {
  margin: 0 0 20px;
  font-size: 13px;
  color: #4a6475;
  line-height: 1.5;
}
.gc-style-3e63d401 {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.1),
    rgba(5, 150, 105, 0.1)
  );
  border: 1px solid rgba(14, 36, 51, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.gc-style-3f8a26d6 {
  position: absolute;
  top: -15%;
  left: -10%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.5), transparent 70%);
  filter: blur(60px);
  animation: blobDrift1 18s ease-in-out infinite;
}
.gc-style-3fa1dd97 {
  flex: 1;
  padding: 32px 40px 40px;
  display: flex;
  justify-content: center;
}
.gc-style-408cd6c7 {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 14px 14px 40px;
  border-radius: 12px;
  border: 1.5px solid rgba(14, 36, 51, 0.12);
  font-family: "Outfit", sans-serif;
  font-size: 14.5px;
  color: #0e2433;
  outline: none;
  transition: border-color 0.15s ease;
}
.gc-style-40b7c180 {
  margin-bottom: 20px;
}
.gc-style-40d94026 {
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid rgba(14, 36, 51, 0.14);
  background: transparent;
  color: #3a5468;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}
.gc-style-4101dc4d {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.55),
    transparent 70%
  );
  filter: blur(70px);
  animation: blobDrift2 24s ease-in-out infinite;
}
.gc-style-4287495a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  border-bottom: 1px solid rgba(14, 36, 51, 0.08);
}
.gc-style-46af1ff2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.gc-style-47c5924f {
  color: #0e2433;
  font-weight: 600;
}
.gc-style-47d4f713 {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(14, 36, 51, 0.1);
}
.gc-style-49044ef5 {
  position: fixed;
  inset: 0;
  background: rgba(14, 36, 51, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  backdrop-filter: blur(3px);
}
.gc-style-4a4c8533 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  color: #0e2433;
  letter-spacing: -0.01em;
}
.gc-style-4c0c9ffe {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}
.gc-style-4e2f7458 {
  font-size: 13px;
  font-weight: 600;
  color: #0284c7;
  text-decoration: none;
}
.gc-style-51e8b94d {
  width: 264px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0284c7, #059669, #0891b2);
  background-size: 300% 300%;
  animation: flowGradient 26s ease infinite;
}
.gc-style-53cb8584 {
  font-size: 11px;
  color: #7d95a3;
}
.gc-style-56f3b5fa {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #3a5468;
  margin-bottom: 8px;
}
.gc-style-57832368 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.gc-style-57bf1cdc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.gc-style-58ba5d9e {
  padding: 32px 40px 48px;
}
.gc-style-59d63713 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.gc-style-5b9807b7 {
  position: relative;
  margin-bottom: 10px;
}
.gc-style-5bd76950 {
  font-size: 11px;
  color: #4a6475;
}
.gc-style-5be4b6a9 {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.1),
    rgba(5, 150, 105, 0.1)
  );
  border: 1px solid rgba(14, 36, 51, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gc-style-5cf86b1b {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 80%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.45), transparent 70%);
  filter: blur(50px);
  animation: blobDrift1 20s ease-in-out infinite;
}
.gc-style-5d6233f0 {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
}
.gc-style-5e9037a5 {
  font-size: 13.5px;
  font-weight: 600;
  color: #4a6475;
  text-decoration: none;
}
.gc-style-5f421f20 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gc-style-6258706e {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px;
  margin-bottom: 40px;
}
.gc-style-63d42c0b {
  margin: 4px 0 0;
  font-size: 13.5px;
  color: #4a6475;
}
.gc-style-64a5c28f {
  background: #fff;
  border: 1px solid rgba(14, 36, 51, 0.08);
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: 0 12px 32px rgba(14, 36, 51, 0.06);
  text-align: center;
}
.gc-style-6637f56b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #fff;
}
.gc-style-667a679b {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.5;
}
.gc-style-6927c8d5 {
  position: relative;
  z-index: 1;
}
.gc-style-6967f8bd {
  text-align: center;
  flex-shrink: 0;
}
.gc-style-6a68a3a0 {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.gc-style-6e7f30de {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  border: none;
  background: #0284c7;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.22);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.gc-style-70d4bd8c {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-right-color: transparent;
  transform: rotate(-45deg);
}
.gc-style-71fd604c {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}
.gc-style-73bef1cb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #059669;
  flex-shrink: 0;
}
.gc-style-740021de {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.gc-style-752096f3 {
  font-size: 13px;
  color: #0284c7;
}
.gc-style-7b93c0aa {
  min-width: 0;
}
.gc-style-7cdfcb43 {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.5;
  color: #fee2e2;
}
.gc-style-7ef982d2 {
  margin: 0 0 28px;
  font-size: 14px;
  color: #4a6475;
  line-height: 1.6;
}
.gc-style-823057b4 {
  margin: 0;
  font-size: 13.5px;
  color: #4a6475;
  max-width: 340px;
  line-height: 1.6;
}
.gc-style-827b0c08 {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: #0e7490;
}
.gc-style-83485324 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gc-style-843d1840 {
  font-size: 11.5px;
  color: #3a5468;
  background: #fff;
  border: 1px solid rgba(14, 36, 51, 0.1);
  border-radius: 999px;
  padding: 5px 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.gc-style-844ae4fc {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.gc-style-8bd4bae8 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gc-style-8f5129d3 {
  font-size: 14px;
  font-weight: 600;
  color: #0e2433;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gc-style-90c74960 {
  font-size: 12px;
  color: #4a6475;
}
.gc-style-92437058 {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  opacity: 0.5;
}
.gc-style-93e2b74f {
  font-size: 14px;
  font-weight: 600;
  color: #0e2433;
  line-height: 1.5;
}
.gc-style-954647dc {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-right-color: transparent;
  transform: rotate(-45deg);
}
.gc-style-99013a7f {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 8px;
}
.gc-style-996f6487 {
  padding: 11px 22px;
  border-radius: 10px;
  border: none;
  background: #0284c7;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}
.gc-style-9999b311 {
  font-size: 12.5px;
  color: #4a6475;
}
.gc-style-99a791ca {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #0e2433;
}
.gc-style-9beff3ef {
  padding: 10px 40px 0;
}
.gc-style-a23c647f {
  flex: 1;
  min-width: 0;
}
.gc-style-a554f31b {
  padding: 26px 40px;
  border-bottom: 1px solid rgba(14, 36, 51, 0.08);
}
.gc-style-a58269e9 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.gc-style-a648df8d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.gc-style-a68a4e8d {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 22px;
}
.gc-style-a771f830 {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 28px 20px;
}
.gc-style-a7c6eda3 {
  font-size: 12.5px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.gc-style-a7d83df3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.gc-style-a8e6834f {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #0e2433;
  letter-spacing: -0.01em;
}
.gc-style-a9b4a25a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-style-ab58eaff {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: #0284c7;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.22);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.gc-style-ac341fef {
  background: none;
  border: none;
  font-size: 12.5px;
  font-weight: 600;
  color: #0284c7;
  cursor: pointer;
}
.gc-style-b3179cb2 {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #0e2433;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(14, 36, 51, 0.3);
  z-index: 60;
}
.gc-style-b661a8ea {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.gc-style-b808cf66 {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(179, 38, 30, 0.2);
  background: rgba(179, 38, 30, 0.06);
  color: #b3261e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-style-b8a26d9c {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: #0284c7;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.gc-style-b9293275 {
  font-size: 20px;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: -0.02em;
}
.gc-style-b96fc8a9 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.gc-style-bac4fd9b {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.gc-style-bad18afc {
  font-size: 12.5px;
  font-weight: 600;
  color: #0284c7;
}
.gc-style-bbb6ecfc {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid rgba(2, 132, 199, 0.15);
  border-top-color: #0284c7;
  animation: spin360 0.9s linear infinite;
}
.gc-style-bbde68e2 {
  font-size: 30px;
  font-weight: 800;
  color: #0e2433;
  letter-spacing: -0.02em;
}
.gc-style-c07e03a1 {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
}
.gc-style-c1e94ef2 {
  margin: 0 0 32px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.gc-style-c676c2a9 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gc-style-c741b39e {
  margin: 0 0 30px;
  font-size: 13.5px;
  color: #4a6475;
  line-height: 1.6;
}
.gc-style-c8472765 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.gc-style-cb454429 {
  font-size: 12px;
  color: #7d95a3;
  margin-top: 5px;
}
.gc-style-cc9641c2 {
  font-size: 11px;
  font-weight: 600;
  color: #3a5468;
}
.gc-style-cde872e3 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gc-style-cf13eb12 {
  font-size: 12px;
  color: #7d95a3;
  margin-top: 4px;
}
.gc-style-d0119dfc {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gc-style-d149cb5a {
  font-size: 13.5px;
  font-weight: 600;
  color: #0e2433;
}
.gc-style-d4f44dc0 {
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.82),
    rgba(2, 132, 199, 0.62)
  );
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(2, 132, 199, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.gc-style-d91d29b5 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.gc-style-da0f200e {
  background: #fff;
  border: 1px solid rgba(14, 36, 51, 0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(14, 36, 51, 0.05);
}
.gc-style-da618e00 {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gc-style-db108080 {
  margin: 0 0 28px;
  font-size: 13.5px;
  color: #4a6475;
  line-height: 1.6;
}
.gc-style-db51b9e5 {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.gc-style-db7c45e1 {
  padding: 13px 26px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.82),
    rgba(2, 132, 199, 0.62)
  );
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(2, 132, 199, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.gc-style-dc2b8b52 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}
.gc-style-dc7fa52d {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(14, 36, 51, 0.12);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #0e2433;
  outline: none;
  margin-bottom: 24px;
}
.gc-style-dd2d82aa {
  margin: 0 0 8px;
  font-size: 18.5px;
  font-weight: 700;
  color: #0e2433;
  letter-spacing: -0.01em;
}
.gc-style-ddc455f5 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
  animation: dotBounce 1.2s ease-in-out infinite 0.3s;
}
.gc-style-de1c2e96 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.gc-style-dfd4061e {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.82),
    rgba(2, 132, 199, 0.62)
  );
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(2, 132, 199, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.gc-style-e049c594 {
  height: 6px;
  border-radius: 3px;
  background: rgba(14, 36, 51, 0.07);
  overflow: hidden;
}
.gc-style-e1d4c739 {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #0284c7;
}
.gc-style-e25a1188 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(14, 36, 51, 0.14);
  background: transparent;
  color: #0e2433;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.gc-style-e3e2cffd {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.gc-style-e52aa01c {
  font-size: 12px;
  color: #7d95a3;
}
.gc-style-e5b51a69 {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gc-style-e5fb835b {
  position: absolute;
  bottom: -15%;
  right: -25%;
  width: 75%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.5), transparent 70%);
  filter: blur(55px);
  animation: blobDrift2 22s ease-in-out infinite;
}
.gc-style-e6488d60 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.gc-style-e6e23d31 {
  width: 100%;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0e2433;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1.5px solid #0284c7;
  outline: none;
}
.gc-style-ea33ec6d {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.gc-style-eb455668 {
  font-size: 12.5px;
  font-weight: 700;
  color: #0284c7;
  flex-shrink: 0;
  background: rgba(2, 132, 199, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}
.gc-style-eed431db {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.gc-style-f0340fde {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.gc-style-f0ce3077 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
}
.gc-style-f0d0b509 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
  animation: dotBounce 1.2s ease-in-out infinite 0.15s;
}
.gc-style-f202ff98 {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  opacity: 0.5;
  text-decoration: none;
}
.gc-style-f2327f0e {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.gc-style-f5d957d7 {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 116, 144, 0.4), transparent 70%);
  filter: blur(50px);
  animation: blobDrift3 20s ease-in-out infinite;
}
.gc-style-f5fe6fe6 {
  font-size: 30px;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: -0.02em;
}
.gc-style-f63298cb {
  padding: 16px 18px;
  border-radius: 14px;
  background: #f9fcfd;
  border: 1px solid rgba(14, 36, 51, 0.08);
  margin-bottom: 8px;
}
.gc-style-f7d14a8a {
  margin: 28px 0 0;
  text-align: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
.gc-style-f80f856b {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  box-shadow:
    0 24px 60px rgba(10, 27, 40, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  padding: 44px 40px 36px;
}
.gc-style-f8caaa0b {
  margin: 0 0 28px;
  font-size: 12px;
  color: #7d95a3;
}
.gc-style-faba9726 {
  font-size: 15px;
  font-weight: 600;
  color: #0e2433;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gc-style-fb398a99 {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.gc-style-fd76a984 {
  font-size: 12.5px;
  color: #7d95a3;
}
.gc-style-fef5dddd {
  max-width: 440px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gc-style-ffdbbdfc {
  font-size: 16px;
  font-weight: 600;
  color: #7d95a3;
}


/* == Restored: sidebar/header switch scale helpers == */
.gc-sidebar-theme { padding: 12px 6px; display: flex; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.gc-sidebar-theme-label { font-size: 13px; color: rgba(255, 255, 255, 0.8); font-weight: 600; }
.gc-switch-sidebar { --switch-scale: 0.32; }
.gc-dashboard-user-card { margin-top: 0; }
.gc-dashboard-actions { display: flex; align-items: center; gap: 16px; }
.gc-switch-header { --switch-scale: 0.35; }

/* ==========================================================================
   GenCite Universal Light & Dark Mode Switch & Theme Styles
   ========================================================================== */
.switch {
  --switch-scale: 1;
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: calc(320px * var(--switch-scale));
  height: calc(130px * var(--switch-scale));
  aspect-ratio: 32 / 13;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  vertical-align: middle;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.slider {
  position: absolute;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 320px;
  height: 130px;
  transform: scale(var(--switch-scale));
  transform-origin: 0 0;
  background-color: #2196F3;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  border: 2px solid grey;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider:before {
  position: absolute;
  content: "";
  height: 110px;
  width: 110px;
  border-radius: 50%;
  left: 10px;
  bottom: 10px;
  background-color: #f9dc5c;
  -webkit-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  -webkit-box-shadow: 0px 0px 50px 50px rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 50px 50px rgba(255, 255, 255, 0.3);
}

input:checked + .slider {
  background-color: #1c1c24;
  border: 2px solid white;
}

input:focus + .slider {
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.6);
}

input:checked + .slider:before {
  transform: translateX(187px) translateY(2px);
  background-color: #d1e0e8;
  box-shadow: 0px 0px 40px 20px rgba(209, 224, 232, 0.4);
}

.clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 130px;
  overflow: hidden;
}

.cloud1 {
  position: relative;
  z-index: 200;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0.95;
}

.cloud2 {
  z-index: 100;
  -webkit-transition: 1.1s;
  transition: 1.1s;
  transform: scale(1.15) translateY(-20px) translateX(-20px);
  opacity: 0.5;
}

input:checked + .slider > .clouds {
  -webkit-transform: translateY(99px);
  -ms-transform: translateY(99px);
  transform: translateY(99px);
}

.balloon {
  z-index: 150;
  position: absolute;
  top: 0;
  right: 100px;
  height: 40px;
  transform: translateY(20px);
  -webkit-transition: 3s ease-in-out;
  transition: 3s ease-in-out;
}

input:checked + .slider > .balloon {
  transform: translateY(150px);
}

input:hover + .slider > .balloon {
  animation: wiggle 3s infinite;
}

@keyframes wiggle {
  0%,
  100% {
    transform: translateY(20px) rotate(0deg);
  }
  50% {
    transform: translateY(14px) rotate(-5deg);
  }
}

.night {
  background-color: #1c1c24;
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

input:checked + .slider > .night {
  z-index: 151;
  display: block;
}

.slider p.star {
  z-index: 500;
  position: absolute;
  color: white;
  opacity: 0;
  transition: 0.6s;
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #0fa,
    0 0 82px #0fa, 0 0 92px #0fa, 0 0 102px #0fa, 0 0 151px #0fa;
  transform: translateY(-80px);
  margin: 0;
}

.slider p.star:nth-of-type(1) { top: 10px; left: 60px; font-size: 10px; }
.slider p.star:nth-of-type(2) { top: 30px; font-size: 8px; left: 170px; }
.slider p.star:nth-of-type(3) { top: 60px; font-size: 12px; left: 10px; }
.slider p.star:nth-of-type(4) { top: 90px; font-size: 5px; left: 70px; }
.slider p.star:nth-of-type(5) { top: 55px; font-size: 9px; left: 140px; }

input:checked + .slider .star {
  transform: translateY(0px);
  opacity: 1;
}

.spaceship {
  z-index: 800;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 100px;
  height: 40px;
  transform: translateY(150px) translateX(-150px);
  -webkit-transition: 2s ease-in-out;
  transition: transform 2s ease-in-out, opacity 1s ease;
  transition-delay: 0.5s;
}

input:checked + .slider .spaceship {
  opacity: 1;
  transform: translateY(-100px) translateX(40px);
}

/* Dark Mode Overrides for GenCite Static & Standalone Pages */
html[data-theme="dark"],
body.dark-mode {
  background-color: #0a0d14 !important;
  color: #f0f6f6 !important;
}

html[data-theme="dark"] .gc-style-243c02bc,
body.dark-mode .gc-style-243c02bc,
html[data-theme="dark"] .gc-style-eed431db,
body.dark-mode .gc-style-eed431db {
  background: #0a0d14 !important;
  color: #f0f6f6 !important;
}

html[data-theme="dark"] .gc-style-1e416317,
body.dark-mode .gc-style-1e416317,
html[data-theme="dark"] .gc-style-faba9726,
body.dark-mode .gc-style-faba9726,
html[data-theme="dark"] .gc-style-019cbcfc,
body.dark-mode .gc-style-019cbcfc {
  color: #f0f6f6 !important;
}

html[data-theme="dark"] .gc-style-f80f856b,
body.dark-mode .gc-style-f80f856b,
html[data-theme="dark"] .gc-style-9f93532f,
body.dark-mode .gc-style-9f93532f,
html[data-theme="dark"] .gc-style-28bdf0f6,
body.dark-mode .gc-style-28bdf0f6 {
  background: rgba(22, 28, 44, 0.85) !important;
  border-color: rgba(0, 242, 254, 0.2) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5) !important;
  color: #f0f6f6 !important;
}

html[data-theme="dark"] .gc-style-63d42c0b,
body.dark-mode .gc-style-63d42c0b,
html[data-theme="dark"] .gc-style-7ef982d2,
body.dark-mode .gc-style-7ef982d2 {
  color: #94a3b8 !important;
}

.gc-sidebar-theme-wrapper {
  margin-top: auto;
  margin-bottom: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gc-sidebar-theme-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.gc-switch-sidebar {
  --switch-scale: 0.22;
}

/* ==========================================================================
   ✦ GenCite Universal Dark Mode Typography & Contrast Guarantee
   Ensures every single text element, card, table, heading, label, and button
   across ALL static HTML flow prototypes and components maintains pristine
   high-contrast visibility when switched to dark mode.
   ========================================================================== */
:root {
  --bg-page: #f6fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f9fcfd;
  --bg-subtle: rgba(2, 132, 199, 0.06);
  --text-main: #0e2433;
  --text-muted: #4a6475;
  --text-dim: #7d95a3;
  --text-accent: #0284c7;
  --border-color: rgba(14, 36, 51, 0.08);
  --border-strong: rgba(14, 36, 51, 0.14);
}

html[data-theme="dark"],
body.dark-mode {
  --bg-page: #0a0d14;
  --bg-card: #161c2c;
  --bg-card-hover: #1e2638;
  --bg-subtle: rgba(0, 242, 254, 0.12);
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --text-accent: #2dd4bf;
  --border-color: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
}

/* Force body and root containers to dark background and white text */
html[data-theme="dark"] body,
body.dark-mode,
html[data-theme="dark"] [class*="gc-style-"][style*="background:#f6fafc"],
body.dark-mode [class*="gc-style-"][style*="background:#f6fafc"],
html[data-theme="dark"] [class*="gc-style-"][style*="background: #f6fafc"],
body.dark-mode [class*="gc-style-"][style*="background: #f6fafc"] {
  background-color: var(--bg-page) !important;
  color: var(--text-main) !important;
}

/* --------------------------------------------------------------------------
   1. UNIVERSAL TYPOGRAPHY OVERRIDES FOR ALL STATIC FLOW CLASSES
   -------------------------------------------------------------------------- */
/* Automatically catch and convert ANY hardcoded font color in static flow classes */
html[data-theme="dark"] [class*="gc-style-"],
body.dark-mode [class*="gc-style-"],
html[data-theme="dark"] .gc-analysis-status,
body.dark-mode .gc-analysis-status,
html[data-theme="dark"] .gc-variation-card,
body.dark-mode .gc-variation-card,
html[data-theme="dark"] .gc-model-row,
body.dark-mode .gc-model-row,
html[data-theme="dark"] .gc-dashboard-user-card,
body.dark-mode .gc-dashboard-user-card {
  border-color: var(--border-color) !important;
}

/* Pure white for all headings, titles, numbers, brand names, and strong tags */
html[data-theme="dark"] h1, html[data-theme="dark"] h2, html[data-theme="dark"] h3, 
html[data-theme="dark"] h4, html[data-theme="dark"] h5, html[data-theme="dark"] h6,
html[data-theme="dark"] strong, html[data-theme="dark"] b,
html[data-theme="dark"] [class*="gc-style-"] h1, html[data-theme="dark"] [class*="gc-style-"] h2, html[data-theme="dark"] [class*="gc-style-"] h3,
html[data-theme="dark"] [class*="gc-style-"] h4, html[data-theme="dark"] [class*="gc-style-"] h5, html[data-theme="dark"] [class*="gc-style-"] h6,
html[data-theme="dark"] [class*="gc-style-"] strong, html[data-theme="dark"] [class*="gc-style-"] b,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, 
body.dark-mode h4, body.dark-mode h5, body.dark-mode h6,
body.dark-mode strong, body.dark-mode b,
body.dark-mode [class*="gc-style-"] h1, body.dark-mode [class*="gc-style-"] h2, body.dark-mode [class*="gc-style-"] h3,
body.dark-mode [class*="gc-style-"] h4, body.dark-mode [class*="gc-style-"] h5, body.dark-mode [class*="gc-style-"] h6,
body.dark-mode [class*="gc-style-"] strong, body.dark-mode [class*="gc-style-"] b {
  color: #ffffff !important;
}

/* Crisp silver/slate for all paragraphs, subtitles, descriptions, labels, and table cells */
html[data-theme="dark"] p, html[data-theme="dark"] span, html[data-theme="dark"] label,
html[data-theme="dark"] div, html[data-theme="dark"] td, html[data-theme="dark"] th, html[data-theme="dark"] li,
html[data-theme="dark"] [class*="gc-style-"] p, html[data-theme="dark"] [class*="gc-style-"] span, html[data-theme="dark"] [class*="gc-style-"] label,
html[data-theme="dark"] [class*="gc-style-"] td, html[data-theme="dark"] [class*="gc-style-"] th,
body.dark-mode p, body.dark-mode span, body.dark-mode label,
body.dark-mode div, body.dark-mode td, body.dark-mode th, body.dark-mode li,
body.dark-mode [class*="gc-style-"] p, body.dark-mode [class*="gc-style-"] span, body.dark-mode [class*="gc-style-"] label,
body.dark-mode [class*="gc-style-"] td, body.dark-mode [class*="gc-style-"] th {
  color: var(--text-main);
}

/* Override dark muted fonts to high-contrast silver/slate */
html[data-theme="dark"] .gc-analysis-status p,
body.dark-mode .gc-analysis-status p {
  color: var(--text-muted) !important;
}

/* Ensure links, active filter tabs, and brand mentions pop with bright teal */
html[data-theme="dark"] a,
html[data-theme="dark"] [class*="gc-style-"] a,
body.dark-mode a,
body.dark-mode [class*="gc-style-"] a {
  color: var(--text-accent) !important;
}

/* --------------------------------------------------------------------------
   2. CARD & CONTAINER BACKGROUND OVERRIDES
   -------------------------------------------------------------------------- */
html[data-theme="dark"] .gc-analysis-status,
html[data-theme="dark"] .gc-variation-card.is-unselected,
html[data-theme="dark"] .gc-variation-check.is-unselected,
html[data-theme="dark"] [class*="gc-style-"][style*="background:#fff"],
html[data-theme="dark"] [class*="gc-style-"][style*="background: #fff"],
html[data-theme="dark"] [class*="gc-style-"][style*="background:white"],
html[data-theme="dark"] [class*="gc-style-"][style*="background: white"],
html[data-theme="dark"] [class*="gc-style-"][style*="background: rgb(255, 255, 255)"],
body.dark-mode .gc-analysis-status,
body.dark-mode .gc-variation-card.is-unselected,
body.dark-mode .gc-variation-check.is-unselected,
body.dark-mode [class*="gc-style-"][style*="background:#fff"],
body.dark-mode [class*="gc-style-"][style*="background: #fff"],
body.dark-mode [class*="gc-style-"][style*="background:white"],
body.dark-mode [class*="gc-style-"][style*="background: white"],
body.dark-mode [class*="gc-style-"][style*="background: rgb(255, 255, 255)"] {
  background-color: var(--bg-card) !important;
  border-color: var(--border-color) !important;
  color: var(--text-main) !important;
}

/* Selected / waiting card states in dark mode */
html[data-theme="dark"] .gc-variation-card.is-selected,
body.dark-mode .gc-variation-card.is-selected,
html[data-theme="dark"] .gc-model-row.is-complete,
body.dark-mode .gc-model-row.is-complete {
  background-color: rgba(0, 242, 254, 0.08) !important;
  border-color: rgba(0, 242, 254, 0.35) !important;
}

html[data-theme="dark"] .gc-model-row.is-waiting,
body.dark-mode .gc-model-row.is-waiting {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* --------------------------------------------------------------------------
   3. INTERACTIVE BUTTON & INPUT OVERRIDES
   -------------------------------------------------------------------------- */
html[data-theme="dark"] .gc-analysis-retry,
body.dark-mode .gc-analysis-retry {
  background: linear-gradient(135deg, #0891b2 0%, #0284c7 100%) !important;
  border-color: rgba(45, 212, 191, 0.4) !important;
  color: #ffffff !important;
}

html[data-theme="dark"] button[class*="gc-style-"][style*="background:transparent"],
html[data-theme="dark"] button[class*="gc-style-"][style*="background: transparent"],
body.dark-mode button[class*="gc-style-"][style*="background:transparent"],
body.dark-mode button[class*="gc-style-"][style*="background: transparent"] {
  color: #ffffff !important;
  border-color: var(--border-strong) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

html[data-theme="dark"] button[class*="gc-style-"][style*="background:transparent"]:hover,
html[data-theme="dark"] button[class*="gc-style-"][style*="background: transparent"]:hover,
body.dark-mode button[class*="gc-style-"][style*="background:transparent"]:hover,
body.dark-mode button[class*="gc-style-"][style*="background: transparent"]:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border-color: var(--border-strong) !important;
}

html[data-theme="dark"] input:focus,
html[data-theme="dark"] select:focus,
html[data-theme="dark"] textarea:focus,
body.dark-mode input:focus,
body.dark-mode select:focus,
body.dark-mode textarea:focus {
  border-color: var(--text-accent) !important;
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15) !important;
}

/* ==========================================================================
   ✦ GenCite Motion & Transition Polish
   Smooth cross-fades between flow pages, gentle entrances for overlays, and
   consistent hover transitions — no abrupt jumps.
   ========================================================================== */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) { animation-duration: 200ms; }

html { background: var(--bg-page); }
body { background: var(--bg-page); }

/* Sidebar nav items ease instead of snapping */
.gc-style-f202ff98, .gc-style-92437058, .gc-style-c07e03a1, .gc-style-fb398a99 {
  transition: opacity 0.18s ease, background-color 0.18s ease;
}
.gc-style-f202ff98:hover { opacity: 0.85; background: rgba(255, 255, 255, 0.08); }

/* Secondary buttons and links ease on hover */
.gc-style-e25a1188, .gc-style-379ba135, .gc-style-40d94026, .gc-style-1f93fa9a,
.gc-style-b808cf66, .gc-style-996f6487, .gc-style-667a679b, .gc-style-4e2f7458,
.gc-style-5e9037a5, .gc-run-again, .gc-style-ac341fef {
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    box-shadow 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}
.gc-style-e25a1188:hover, .gc-style-379ba135:hover, .gc-style-40d94026:hover,
.gc-style-1f93fa9a:hover { background: var(--bg-subtle); }
.gc-style-667a679b:hover { opacity: 1; }
.gc-style-b808cf66:hover { background: rgba(179, 38, 30, 0.12); }

/* Modal + toast entrances */
.gc-style-49044ef5 { animation: gcOverlayIn 0.18s ease-out both; }
.gc-style-0d0227ad { animation: gcModalIn 0.24s cubic-bezier(0.22, 1, 0.36, 1) both; }
.gc-style-b3179cb2 { animation: gcToastIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes gcOverlayIn { from { opacity: 0; } }
@keyframes gcModalIn { from { opacity: 0; transform: translateY(10px) scale(0.97); } }
@keyframes gcToastIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Saved-analysis rows lift softly */
.gc-style-1d180c9d { transition: box-shadow 0.18s ease, border-color 0.18s ease; }
.gc-style-1d180c9d:hover { box-shadow: 0 10px 24px rgba(14, 36, 51, 0.08); }

/* Result bars grow in on load and glide when values change */
.gc-result-fill {
  animation: gcBarGrow 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes gcBarGrow { from { width: 0; } }

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
  .gc-style-49044ef5, .gc-style-0d0227ad, .gc-style-b3179cb2, .gc-result-fill { animation: none; }
  .gc-result-fill { transition: none; }
}

/* ==========================================================================
   ✦ GenCite Data Visualizations
   Donut meter for overall citation share, ranked bars for per-query share of
   voice, run-over-run delta badge, and mini rings on saved analyses.
   Single accent hue on a light step of the same ramp; values direct-labeled.
   ========================================================================== */
.gc-viz-grid { display: grid; grid-template-columns: 320px 1fr; gap: 16px; margin-bottom: 28px; }
@media (max-width: 980px) { .gc-viz-grid { grid-template-columns: 1fr; } }

.gc-viz-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(14, 36, 51, 0.05);
}
.gc-viz-card__title { margin: 0 0 2px; font-size: 14px; font-weight: 700; color: var(--text-main); }
.gc-viz-card__sub { margin: 0 0 18px; font-size: 12px; color: var(--text-dim); }

.gc-viz-donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.gc-viz-donut { position: relative; width: 172px; height: 172px; }
.gc-viz-donut svg { display: block; width: 100%; height: 100%; transform: rotate(-90deg); }
.gc-viz-donut-track { fill: none; stroke: var(--bg-subtle); stroke-width: 12; }
.gc-viz-donut-fill {
  fill: none;
  stroke: var(--text-accent);
  stroke-width: 12;
  stroke-linecap: round;
  animation: gcArcIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: stroke-dasharray 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes gcArcIn { from { stroke-dasharray: 0 100; } }
.gc-viz-donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.gc-viz-donut-center__value { font-size: 34px; font-weight: 800; color: var(--text-main); letter-spacing: -0.02em; line-height: 1; }
.gc-viz-donut-center__label { margin-top: 5px; font-size: 11.5px; color: var(--text-dim); }
.gc-viz-donut-legend { display: flex; gap: 18px; }
.gc-viz-donut-legend__item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.gc-viz-donut-legend__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.gc-viz-donut-legend__dot.is-cited { background: var(--text-accent); }
.gc-viz-donut-legend__dot.is-uncited { background: var(--bg-subtle); box-shadow: inset 0 0 0 1px var(--border-strong); }

.gc-viz-rank { display: flex; flex-direction: column; gap: 13px; }
.gc-viz-rank__row { display: grid; grid-template-columns: minmax(0, 220px) 1fr 46px; align-items: center; gap: 12px; }
.gc-viz-rank__label { font-size: 12.5px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gc-viz-rank__track { height: 10px; border-radius: 0 4px 4px 0; background: var(--bg-subtle); overflow: hidden; }
.gc-viz-rank__fill {
  display: block;
  height: 100%;
  border-radius: 0 4px 4px 0;
  background: var(--text-accent);
  animation: gcBarGrow 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gc-viz-rank__value { font-size: 12px; font-weight: 600; color: var(--text-main); text-align: right; font-variant-numeric: tabular-nums; }
.gc-viz-empty { font-size: 12.5px; color: var(--text-dim); }

/* Citations by model breakdown */
.gc-viz-card--wide { margin-bottom: 28px; }
.gc-viz-model { display: flex; flex-direction: column; gap: 14px; }
.gc-viz-model__row {
  display: grid;
  grid-template-columns: 120px 1fr 46px 96px;
  align-items: center;
  gap: 12px;
}
@media (max-width: 640px) {
  .gc-viz-model__row { grid-template-columns: 100px 1fr 42px; }
  .gc-viz-model__count { display: none; }
}
.gc-viz-model__label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--text-main); }
.gc-viz-model__track { height: 12px; border-radius: 0 5px 5px 0; background: var(--bg-subtle); overflow: hidden; }
.gc-viz-model__fill {
  display: block;
  height: 100%;
  border-radius: 0 5px 5px 0;
  animation: gcBarGrow 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gc-viz-model__value { font-size: 12.5px; font-weight: 700; color: var(--text-main); text-align: right; font-variant-numeric: tabular-nums; }
.gc-viz-model__count { font-size: 12px; color: var(--text-dim); font-variant-numeric: tabular-nums; }
.gc-viz-model__note { margin: 16px 0 0; font-size: 12px; font-weight: 600; color: var(--text-accent); }

.gc-viz-delta {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 8px; padding: 3px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.gc-viz-delta.is-up { color: #116932; background: rgba(17, 105, 50, 0.1); }
.gc-viz-delta.is-down { color: #b3261e; background: rgba(179, 38, 30, 0.08); }
.gc-viz-delta.is-flat { color: var(--text-muted); background: var(--bg-subtle); }
html[data-theme="dark"] .gc-viz-delta.is-up, body.dark-mode .gc-viz-delta.is-up { color: #4ade80; background: rgba(74, 222, 128, 0.12); }
html[data-theme="dark"] .gc-viz-delta.is-down, body.dark-mode .gc-viz-delta.is-down { color: #f87171; background: rgba(248, 113, 113, 0.12); }

.gc-ring { position: relative; width: 56px; height: 56px; margin: 0 auto; }
.gc-ring svg { display: block; width: 100%; height: 100%; transform: rotate(-90deg); }
.gc-ring__track { fill: none; stroke: var(--bg-subtle); stroke-width: 4.5; }
.gc-ring__fill {
  fill: none;
  stroke: var(--text-accent);
  stroke-width: 4.5;
  stroke-linecap: round;
  animation: gcArcIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.gc-ring__value {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 700; color: var(--text-main);
}

@media (prefers-reduced-motion: reduce) {
  .gc-viz-donut-fill, .gc-viz-rank__fill, .gc-ring__fill { animation: none; transition: none; }
}

/* ==========================================================================
   ✦ Dark Mode Coverage for Hardcoded Flow Backgrounds & Text
   The exported gc-style classes bake in light backgrounds and ink colors;
   map them onto the theme variables so every flow page reads correctly in
   dark mode (page root, cards, modal, tracks, and text hierarchy).
   ========================================================================== */
html[data-theme="dark"] .gc-style-387efa28,
body.dark-mode .gc-style-387efa28,
html[data-theme="dark"] .gc-style-2d3b374a .gc-style-eed431db,
body.dark-mode .gc-style-2d3b374a .gc-style-eed431db {
  background: var(--bg-page);
}

html[data-theme="dark"] .gc-style-da0f200e,
html[data-theme="dark"] .gc-style-31bcf59b,
html[data-theme="dark"] .gc-style-1d180c9d,
html[data-theme="dark"] .gc-style-2fa076ce,
html[data-theme="dark"] .gc-style-64a5c28f,
html[data-theme="dark"] .gc-style-0d0227ad,
body.dark-mode .gc-style-da0f200e,
body.dark-mode .gc-style-31bcf59b,
body.dark-mode .gc-style-1d180c9d,
body.dark-mode .gc-style-2fa076ce,
body.dark-mode .gc-style-64a5c28f,
body.dark-mode .gc-style-0d0227ad {
  background: var(--bg-card);
  border-color: var(--border-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .gc-style-f63298cb,
body.dark-mode .gc-style-f63298cb {
  background: var(--bg-card-hover);
  border-color: var(--border-color);
}

html[data-theme="dark"] .gc-style-843d1840,
body.dark-mode .gc-style-843d1840 {
  background: var(--bg-card-hover);
  border-color: var(--border-color);
  color: var(--text-muted);
}

html[data-theme="dark"] .gc-style-16d2cc08,
body.dark-mode .gc-style-16d2cc08 {
  background: var(--bg-card);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .gc-style-36c9609d,
body.dark-mode .gc-style-36c9609d {
  background: var(--bg-subtle);
  border-bottom-color: var(--border-color);
}

/* Bar tracks stay visible on dark cards */
html[data-theme="dark"] .gc-style-e049c594,
body.dark-mode .gc-style-e049c594,
html[data-theme="dark"] .gc-style-47d4f713,
body.dark-mode .gc-style-47d4f713 {
  background: rgba(255, 255, 255, 0.1);
}

/* Text hierarchy: keep muted/dim tones instead of flattening to white */
html[data-theme="dark"] .gc-style-cf13eb12, body.dark-mode .gc-style-cf13eb12,
html[data-theme="dark"] .gc-style-53cb8584, body.dark-mode .gc-style-53cb8584,
html[data-theme="dark"] .gc-style-cb454429, body.dark-mode .gc-style-cb454429,
html[data-theme="dark"] .gc-style-0ac49a6e, body.dark-mode .gc-style-0ac49a6e,
html[data-theme="dark"] .gc-style-fd76a984, body.dark-mode .gc-style-fd76a984,
html[data-theme="dark"] .gc-style-e52aa01c, body.dark-mode .gc-style-e52aa01c,
html[data-theme="dark"] .gc-style-f8caaa0b, body.dark-mode .gc-style-f8caaa0b,
html[data-theme="dark"] .gc-style-ffdbbdfc, body.dark-mode .gc-style-ffdbbdfc {
  color: var(--text-dim);
}

html[data-theme="dark"] .gc-style-0cac53d2, body.dark-mode .gc-style-0cac53d2,
html[data-theme="dark"] .gc-style-5bd76950, body.dark-mode .gc-style-5bd76950,
html[data-theme="dark"] .gc-style-90c74960, body.dark-mode .gc-style-90c74960,
html[data-theme="dark"] .gc-style-9999b311, body.dark-mode .gc-style-9999b311,
html[data-theme="dark"] .gc-style-1e9cc0f6, body.dark-mode .gc-style-1e9cc0f6,
html[data-theme="dark"] .gc-style-db108080, body.dark-mode .gc-style-db108080,
html[data-theme="dark"] .gc-style-c741b39e, body.dark-mode .gc-style-c741b39e,
html[data-theme="dark"] .gc-style-823057b4, body.dark-mode .gc-style-823057b4,
html[data-theme="dark"] .gc-style-3c90df07, body.dark-mode .gc-style-3c90df07,
html[data-theme="dark"] .gc-style-56f3b5fa, body.dark-mode .gc-style-56f3b5fa,
html[data-theme="dark"] .gc-style-cc9641c2, body.dark-mode .gc-style-cc9641c2 {
  color: var(--text-muted);
}

/* Accent-toned text and badges pick up the dark accent */
html[data-theme="dark"] .gc-style-bad18afc, body.dark-mode .gc-style-bad18afc,
html[data-theme="dark"] .gc-style-752096f3, body.dark-mode .gc-style-752096f3,
html[data-theme="dark"] .gc-style-b9293275, body.dark-mode .gc-style-b9293275,
html[data-theme="dark"] .gc-style-f5fe6fe6, body.dark-mode .gc-style-f5fe6fe6,
html[data-theme="dark"] .gc-style-2db23746, body.dark-mode .gc-style-2db23746,
html[data-theme="dark"] .gc-style-ac341fef, body.dark-mode .gc-style-ac341fef,
html[data-theme="dark"] .gc-cumulative-note, body.dark-mode .gc-cumulative-note,
html[data-theme="dark"] .gc-variation-loading, body.dark-mode .gc-variation-loading {
  color: var(--text-accent);
}

html[data-theme="dark"] .gc-style-eb455668,
body.dark-mode .gc-style-eb455668 {
  color: var(--text-accent);
  background: var(--bg-subtle);
}

/* Outline buttons on dark surfaces */
html[data-theme="dark"] .gc-style-379ba135, body.dark-mode .gc-style-379ba135,
html[data-theme="dark"] .gc-style-40d94026, body.dark-mode .gc-style-40d94026,
html[data-theme="dark"] .gc-style-1f93fa9a, body.dark-mode .gc-style-1f93fa9a,
html[data-theme="dark"] .gc-style-e25a1188, body.dark-mode .gc-style-e25a1188 {
  color: var(--text-main);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
}
html[data-theme="dark"] .gc-style-379ba135:hover, body.dark-mode .gc-style-379ba135:hover,
html[data-theme="dark"] .gc-style-40d94026:hover, body.dark-mode .gc-style-40d94026:hover,
html[data-theme="dark"] .gc-style-1f93fa9a:hover, body.dark-mode .gc-style-1f93fa9a:hover,
html[data-theme="dark"] .gc-style-e25a1188:hover, body.dark-mode .gc-style-e25a1188:hover {
  background: rgba(255, 255, 255, 0.09);
}

html[data-theme="dark"] .gc-run-again,
body.dark-mode .gc-run-again {
  color: var(--text-accent);
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.28);
}
html[data-theme="dark"] .gc-run-again:hover:not(:disabled),
body.dark-mode .gc-run-again:hover:not(:disabled) {
  background: rgba(45, 212, 191, 0.14);
}

/* SVG icons drawn with light-ink strokes stay visible */
html[data-theme="dark"] .gc-style-e25a1188 svg path, body.dark-mode .gc-style-e25a1188 svg path,
html[data-theme="dark"] .gc-style-667a679b svg path, body.dark-mode .gc-style-667a679b svg path {
  stroke: var(--text-main);
}

.gc-viz-donut-fill.gc-is-zero { display: none; }

/* Dark theme: analysis loading chips + tip pill */
html[data-theme="dark"] .gc-analysis-tip,
body.dark-mode .gc-analysis-tip {
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.16);
  color: #9ab8c9;
}
html[data-theme="dark"] .gc-analysis-model-chip,
body.dark-mode .gc-analysis-model-chip {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #d8e6ee;
}

/* ==========================================================================
   Settings page
   ========================================================================== */
.gc-set-page { display: flex; flex-direction: column; gap: 16px; max-width: 860px; }
.gc-set-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 6px 18px rgba(14, 36, 51, 0.04);
}
.gc-set-card__title { margin: 0 0 2px; font-size: 15px; font-weight: 700; color: var(--text-main); }
.gc-set-card__sub { margin: 0 0 18px; font-size: 12.5px; line-height: 1.55; color: var(--text-dim); }
.gc-set-note { margin: 0; font-size: 13px; color: var(--text-muted); }
.gc-set-link { color: var(--text-accent); font-weight: 600; }
.gc-set-error { margin: 12px 0 0; font-size: 12.5px; font-weight: 600; color: #b3261e; }
html[data-theme="dark"] .gc-set-error, body.dark-mode .gc-set-error { color: #ff8a80; }

/* Account */
.gc-set-account { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.gc-set-account__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-strong); }
.gc-set-account__photo--fallback { display: grid; place-items: center; background: var(--bg-subtle); color: var(--text-accent); font-size: 20px; font-weight: 700; }
.gc-set-account__meta { min-width: 0; }
.gc-set-account__name { font-size: 14px; font-weight: 700; color: var(--text-main); }
.gc-set-account__email { font-size: 12.5px; color: var(--text-dim); overflow: hidden; text-overflow: ellipsis; }
.gc-set-account__actions { margin-left: auto; display: flex; gap: 10px; flex-wrap: wrap; }

/* Buttons */
.gc-set-btn {
  padding: 9px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text-main);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.gc-set-btn:hover:not(:disabled) { background: var(--bg-card-hover); }
.gc-set-btn--danger { border-color: rgba(179, 38, 30, 0.35); color: #b3261e; }
.gc-set-btn--danger:hover:not(:disabled) { background: rgba(179, 38, 30, 0.08); }
html[data-theme="dark"] .gc-set-btn--danger, body.dark-mode .gc-set-btn--danger { color: #ff8a80; border-color: rgba(255, 138, 128, 0.4); }

/* Field grid */
.gc-set-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 860px) { .gc-set-grid { grid-template-columns: 1fr; } }
.gc-set-field { display: flex; flex-direction: column; gap: 6px; grid-column: span 1; }
.gc-set-grid > .gc-set-field:nth-child(1), .gc-set-grid > .gc-set-field:nth-child(2) { grid-column: span 1; }
.gc-set-field--full { grid-column: 1 / -1; }
.gc-set-field__label { font-size: 12px; font-weight: 700; color: var(--text-muted); }
.gc-set-input {
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text-main);
  font: inherit;
  font-size: 13.5px;
}
.gc-set-input:focus { outline: 2px solid var(--text-accent); outline-offset: -1px; }
.gc-set-input::placeholder { color: var(--text-dim); }

/* Setting rows */
.gc-set-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--border-color);
}
.gc-set-row:first-of-type { border-top: 0; padding-top: 0; }
.gc-set-row__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gc-set-row__label { font-size: 13.5px; font-weight: 700; color: var(--text-main); }
.gc-set-row__hint { font-size: 12px; color: var(--text-dim); }
.gc-set-row__control { flex-shrink: 0; }

/* Chips (segmented choices) */
.gc-set-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.gc-set-chip {
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text-muted);
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.gc-set-chip:hover { background: var(--bg-card-hover); }
.gc-set-chip.is-active {
  background: var(--text-accent);
  border-color: var(--text-accent);
  color: #fff;
}
html[data-theme="dark"] .gc-set-chip.is-active, body.dark-mode .gc-set-chip.is-active { color: #0a0d14; }

/* Toggle switches */
.gc-set-providers { display: flex; gap: 18px; flex-wrap: wrap; }
.gc-set-toggle { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; }
.gc-set-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.gc-set-toggle__track {
  position: relative;
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: var(--bg-subtle);
  box-shadow: inset 0 0 0 1px var(--border-strong);
  transition: background-color 0.18s ease;
  flex-shrink: 0;
}
.gc-set-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-card);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease;
}
.gc-set-toggle input:checked + .gc-set-toggle__track { background: var(--text-accent); box-shadow: none; }
.gc-set-toggle input:checked + .gc-set-toggle__track::after { transform: translateX(16px); background: #fff; }
.gc-set-toggle input:focus-visible + .gc-set-toggle__track { outline: 2px solid var(--text-accent); outline-offset: 2px; }
.gc-set-toggle__label { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--text-main); }

/* Usage estimate */
.gc-set-usage {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--bg-subtle);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gc-set-usage__label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-dim); }
.gc-set-usage__value { font-size: 18px; font-weight: 800; color: var(--text-accent); font-variant-numeric: tabular-nums; }
.gc-set-usage__detail { font-size: 12px; color: var(--text-muted); }

@media (max-width: 640px) {
  .gc-set-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gc-set-account__actions { margin-left: 0; }
}

/* ==========================================================================
   Content recommendations page
   ========================================================================== */
.gc-rec-disclaimer {
  margin-bottom: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(8, 145, 178, 0.28);
  background: rgba(8, 145, 178, 0.07);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.gc-rec-disclaimer strong { color: var(--text-main); }
.gc-rec-hint {
  margin-bottom: 14px;
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--bg-subtle);
  font-size: 12.5px;
  color: var(--text-muted);
}
.gc-rec-list { display: flex; flex-direction: column; gap: 14px; max-width: 900px; }
.gc-rec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 6px 18px rgba(14, 36, 51, 0.04);
  transition: border-color 0.15s ease, opacity 0.15s ease;
}
.gc-rec-card.is-published { border-color: rgba(2, 132, 199, 0.35); }
.gc-rec-card__head { display: flex; align-items: flex-start; gap: 14px; }
.gc-rec-rank {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--bg-subtle);
  color: var(--text-accent);
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.gc-rec-card__headmain { min-width: 0; flex: 1; }
.gc-rec-title { margin: 0 0 4px; font-size: 15.5px; font-weight: 700; color: var(--text-main); line-height: 1.4; }
.gc-rec-gapline { margin: 0; font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.gc-rec-card__badges { flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.gc-rec-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
}
.gc-rec-badge--high { background: rgba(2, 132, 199, 0.1); color: #0284c7; }
.gc-rec-badge--medium { background: rgba(8, 145, 178, 0.12); color: #065f46; }
.gc-rec-badge--experimental { background: rgba(74, 100, 117, 0.12); color: var(--text-muted); }
html[data-theme="dark"] .gc-rec-badge--high, body.dark-mode .gc-rec-badge--high { background: rgba(45, 212, 191, 0.14); color: #2dd4bf; }
html[data-theme="dark"] .gc-rec-badge--medium, body.dark-mode .gc-rec-badge--medium { background: rgba(56, 189, 248, 0.14); color: #38bdf8; }
.gc-rec-score {
  min-width: 38px;
  text-align: center;
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--text-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  cursor: help;
}
html[data-theme="dark"] .gc-rec-score, body.dark-mode .gc-rec-score { color: #0a0d14; }
.gc-rec-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.gc-rec-meta__item { font-size: 12px; color: var(--text-dim); }
.gc-rec-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card-hover);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.gc-rec-brief { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-color); display: flex; flex-direction: column; gap: 14px; }
.gc-rec-brief__block h3 { margin: 0 0 5px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-dim); }
.gc-rec-brief__block p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--text-main); }
.gc-rec-terms { display: flex; gap: 7px; flex-wrap: wrap; }
.gc-rec-reqs { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }
.gc-rec-reqs li { font-size: 13px; line-height: 1.55; color: var(--text-main); }
.gc-rec-evidence { display: flex; flex-direction: column; gap: 7px; }
.gc-rec-evidence__row { display: flex; justify-content: space-between; gap: 14px; font-size: 12.5px; }
.gc-rec-evidence__query { color: var(--text-muted); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gc-rec-evidence__stats { flex-shrink: 0; color: var(--text-main); font-weight: 600; font-variant-numeric: tabular-nums; }
.gc-rec-card__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.gc-set-btn--published { border-color: var(--text-accent); color: var(--text-accent); background: var(--bg-subtle); }
.gc-rec-rerun { font-size: 12.5px; font-weight: 600; color: var(--text-accent); text-decoration: none; }
.gc-rec-rerun:hover { text-decoration: underline; }
.gc-rec-footnote { max-width: 900px; margin: 16px 0 0; font-size: 11.5px; line-height: 1.55; color: var(--text-dim); }

/* Keyword recommendations */
.gc-kw-coverage {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gc-kw-coverage--missing { background: rgba(179, 38, 30, 0.1); color: #b3261e; }
.gc-kw-coverage--weak { background: rgba(8, 145, 178, 0.12); color: #065f46; }
.gc-kw-coverage--adjacent { background: rgba(2, 132, 199, 0.1); color: #0284c7; }
html[data-theme="dark"] .gc-kw-coverage--missing, body.dark-mode .gc-kw-coverage--missing { background: rgba(255, 138, 128, 0.14); color: #ff8a80; }
html[data-theme="dark"] .gc-kw-coverage--weak, body.dark-mode .gc-kw-coverage--weak { background: rgba(56, 189, 248, 0.14); color: #38bdf8; }
html[data-theme="dark"] .gc-kw-coverage--adjacent, body.dark-mode .gc-kw-coverage--adjacent { background: rgba(45, 212, 191, 0.14); color: #2dd4bf; }
.gc-kw-cta {
  max-width: 900px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: var(--bg-card, #fff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gc-kw-cta__note { font-size: 12.5px; line-height: 1.5; color: var(--text-muted); flex: 1; min-width: 220px; }
.gc-kw-cta .gc-analysis-retry { margin-top: 0; }

@media (max-width: 640px) {
  .gc-rec-card__head { flex-wrap: wrap; }
  .gc-rec-evidence__row { flex-direction: column; gap: 2px; }
  .gc-rec-evidence__query { white-space: normal; }
}
a.gc-run-again { text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }


/* ==========================================================================
   ✦ Ocean Glass Theme
   Light sky-blue / mint patches on the page, frosted-glass cards on top.
   Appended last so it wins over the base rules above.
   ========================================================================== */
html:not([data-theme="dark"]) body:not(.dark-mode) {
  background:
    radial-gradient(520px 420px at 12% 10%, rgba(125, 211, 252, 0.32), transparent 65%),
    radial-gradient(640px 480px at 85% 15%, rgba(134, 239, 172, 0.26), transparent 65%),
    radial-gradient(560px 460px at 75% 85%, rgba(103, 232, 249, 0.24), transparent 65%),
    radial-gradient(480px 420px at 18% 82%, rgba(167, 243, 208, 0.28), transparent 65%),
    var(--bg-page) !important;
  background-attachment: fixed !important;
}

html[data-theme="dark"] body,
body.dark-mode {
  background:
    radial-gradient(520px 420px at 12% 10%, rgba(56, 189, 248, 0.16), transparent 65%),
    radial-gradient(640px 480px at 85% 15%, rgba(52, 211, 153, 0.12), transparent 65%),
    radial-gradient(560px 460px at 75% 85%, rgba(34, 211, 238, 0.12), transparent 65%),
    var(--bg-page) !important;
  background-attachment: fixed !important;
}

/* Frosted-glass cards — light mode */
html:not([data-theme="dark"]) body:not(.dark-mode) .gc-style-0d0227ad,
html:not([data-theme="dark"]) body:not(.dark-mode) .gc-style-16d2cc08,
html:not([data-theme="dark"]) body:not(.dark-mode) .gc-style-1d180c9d,
html:not([data-theme="dark"]) body:not(.dark-mode) .gc-style-2fa076ce,
html:not([data-theme="dark"]) body:not(.dark-mode) .gc-style-31bcf59b,
html:not([data-theme="dark"]) body:not(.dark-mode) .gc-style-64a5c28f,
html:not([data-theme="dark"]) body:not(.dark-mode) .gc-style-da0f200e,
html:not([data-theme="dark"]) body:not(.dark-mode) .gc-analysis-status,
html:not([data-theme="dark"]) body:not(.dark-mode) .gc-variation-card.is-unselected,
html:not([data-theme="dark"]) body:not(.dark-mode) [class*="gc-style-"][style*="background:#fff"],
html:not([data-theme="dark"]) body:not(.dark-mode) [class*="gc-style-"][style*="background: #fff"],
html:not([data-theme="dark"]) body:not(.dark-mode) [class*="gc-style-"][style*="background:white"],
html:not([data-theme="dark"]) body:not(.dark-mode) [class*="gc-style-"][style*="background: white"],
html:not([data-theme="dark"]) body:not(.dark-mode) [class*="gc-style-"][style*="background: rgb(255, 255, 255)"] {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 8px 32px rgba(14, 36, 51, 0.08) !important;
}

/* Frosted-glass cards — dark mode */
html[data-theme="dark"] .gc-style-0d0227ad,
body.dark-mode .gc-style-0d0227ad,
html[data-theme="dark"] .gc-style-16d2cc08,
body.dark-mode .gc-style-16d2cc08,
html[data-theme="dark"] .gc-style-1d180c9d,
body.dark-mode .gc-style-1d180c9d,
html[data-theme="dark"] .gc-style-2fa076ce,
body.dark-mode .gc-style-2fa076ce,
html[data-theme="dark"] .gc-style-31bcf59b,
body.dark-mode .gc-style-31bcf59b,
html[data-theme="dark"] .gc-style-64a5c28f,
body.dark-mode .gc-style-64a5c28f,
html[data-theme="dark"] .gc-style-da0f200e,
body.dark-mode .gc-style-da0f200e,
html[data-theme="dark"] .gc-analysis-status,
body.dark-mode .gc-analysis-status,
html[data-theme="dark"] .gc-variation-card.is-unselected,
body.dark-mode .gc-variation-card.is-unselected,
html[data-theme="dark"] [class*="gc-style-"][style*="background:#fff"],
body.dark-mode [class*="gc-style-"][style*="background:#fff"],
html[data-theme="dark"] [class*="gc-style-"][style*="background: #fff"],
body.dark-mode [class*="gc-style-"][style*="background: #fff"],
html[data-theme="dark"] [class*="gc-style-"][style*="background:white"],
body.dark-mode [class*="gc-style-"][style*="background:white"],
html[data-theme="dark"] [class*="gc-style-"][style*="background: white"],
body.dark-mode [class*="gc-style-"][style*="background: white"],
html[data-theme="dark"] [class*="gc-style-"][style*="background: rgb(255, 255, 255)"],
body.dark-mode [class*="gc-style-"][style*="background: rgb(255, 255, 255)"] {
  background: rgba(23, 34, 51, 0.55) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
}

/* ==========================================================================
   ✦ GenCite Docs
   Reference page explaining Share of Voice and the analysis process. Uses the
   shared theme variables so light/dark modes come for free.
   ========================================================================== */
.gc-docs-body {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  padding: 34px 40px 72px;
}
.gc-docs-inner { width: 100%; max-width: 860px; margin: 0 auto; }

.gc-docs-section { margin-bottom: 44px; scroll-margin-top: 24px; }
.gc-docs-section:last-child { margin-bottom: 0; }

.gc-docs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: 12px;
}
.gc-docs-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-accent);
}

.gc-docs-h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}
.gc-docs-lead {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}
.gc-docs-p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.gc-docs-p:last-child { margin-bottom: 0; }
.gc-docs-p strong { color: var(--text-main); font-weight: 600; }

.gc-docs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 8px 20px rgba(14, 36, 51, 0.05);
}
.gc-docs-card + .gc-docs-card { margin-top: 16px; }

.gc-docs-callout {
  display: flex;
  gap: 14px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 18px;
}
.gc-docs-callout__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--text-accent);
}
.gc-docs-callout__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
}
.gc-docs-callout__text strong { color: var(--text-main); font-weight: 600; }

/* Numbered process steps */
.gc-docs-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
.gc-docs-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 6px 16px rgba(14, 36, 51, 0.04);
  transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.gc-docs-step:hover {
  box-shadow: 0 12px 26px rgba(14, 36, 51, 0.09);
  transform: translateY(-1px);
}
.gc-docs-step__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--text-accent), rgba(2, 132, 199, 0.72));
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.28);
}
.gc-docs-step__body { min-width: 0; }
.gc-docs-step__title {
  margin: 2px 0 5px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
}
.gc-docs-step__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Formula block */
.gc-docs-formula {
  margin-top: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 20px 22px;
  text-align: center;
}
.gc-docs-formula__eq {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}
.gc-docs-formula__eq .op { color: var(--text-dim); font-weight: 500; margin: 0 8px; }
.gc-docs-formula__eq .frac { color: var(--text-accent); }
.gc-docs-formula__note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--text-dim);
}

/* Glossary */
.gc-docs-glossary {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.gc-docs-term {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 16px 18px;
}
.gc-docs-term__name {
  margin: 0 0 5px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-accent);
}
.gc-docs-term__def {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .gc-docs-body { padding: 24px 20px 56px; }
}

/* Shared hover motion for the active static flow. */
.gc-run-again,
.gc-analysis-retry,
.gc-set-btn,
.gc-set-chip,
.gc-style-e25a1188,
.gc-style-379ba135,
.gc-style-40d94026,
.gc-style-1f93fa9a,
.gc-style-b808cf66,
.gc-style-996f6487,
.gc-style-667a679b,
.gc-style-4e2f7458,
.gc-style-5e9037a5,
.gc-style-ac341fef {
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 180ms ease, background-color 180ms ease,
    border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.gc-run-again:hover:not(:disabled),
.gc-analysis-retry:hover:not(:disabled),
.gc-set-btn:hover:not(:disabled),
.gc-set-chip:hover,
.gc-style-e25a1188:hover,
.gc-style-379ba135:hover,
.gc-style-40d94026:hover:not(:disabled),
.gc-style-1f93fa9a:hover,
.gc-style-b808cf66:hover:not(:disabled),
.gc-style-996f6487:hover:not(:disabled),
.gc-style-667a679b:hover,
.gc-style-4e2f7458:hover,
.gc-style-5e9037a5:hover,
.gc-style-ac341fef:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 36, 51, 0.14);
}

.gc-run-again:active:not(:disabled),
.gc-analysis-retry:active:not(:disabled),
.gc-set-btn:active:not(:disabled),
.gc-style-e25a1188:active,
.gc-style-40d94026:active:not(:disabled),
.gc-style-996f6487:active:not(:disabled) {
  transform: translateY(0) scale(.98);
}

.gc-style-f202ff98,
.gc-style-c07e03a1,
.gc-style-92437058,
.gc-style-fb398a99 {
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1),
    background-color 180ms ease, opacity 180ms ease;
}

.gc-style-f202ff98:hover,
.gc-style-c07e03a1:hover,
.gc-style-92437058:hover,
.gc-style-fb398a99:hover {
  transform: translateX(4px);
}

.gc-variation-card,
.gc-style-da0f200e,
.gc-style-31bcf59b,
.gc-viz-card,
.gc-rec-card,
.gc-docs-term,
.gc-docs-formula {
  transition: transform 200ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 200ms ease, border-color 200ms ease,
    background-color 200ms ease;
}

.gc-variation-card:hover,
.gc-style-da0f200e:hover,
.gc-style-31bcf59b:hover,
.gc-viz-card:hover,
.gc-rec-card:hover,
.gc-docs-term:hover,
.gc-docs-formula:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 132, 199, 0.28);
  box-shadow: 0 16px 34px rgba(14, 36, 51, 0.11);
}

.gc-variation-card:hover .gc-model-dot,
.gc-rec-card:hover .gc-rec-rank,
.gc-style-31bcf59b:hover .gc-model-dot {
  transform: scale(1.12);
}

.gc-model-dot,
.gc-rec-rank {
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .gc-run-again,
  .gc-analysis-retry,
  .gc-set-btn,
  .gc-set-chip,
  .gc-style-e25a1188,
  .gc-style-379ba135,
  .gc-style-40d94026,
  .gc-style-1f93fa9a,
  .gc-style-b808cf66,
  .gc-style-996f6487,
  .gc-style-667a679b,
  .gc-style-4e2f7458,
  .gc-style-5e9037a5,
  .gc-style-ac341fef,
  .gc-style-f202ff98,
  .gc-style-c07e03a1,
  .gc-style-92437058,
  .gc-style-fb398a99,
  .gc-variation-card,
  .gc-style-da0f200e,
  .gc-style-31bcf59b,
  .gc-viz-card,
  .gc-rec-card,
  .gc-docs-term,
  .gc-docs-formula,
  .gc-model-dot,
  .gc-rec-rank {
    transition: none;
  }

  .gc-run-again:hover,
  .gc-analysis-retry:hover,
  .gc-set-btn:hover,
  .gc-set-chip:hover,
  .gc-style-e25a1188:hover,
  .gc-style-f202ff98:hover,
  .gc-style-c07e03a1:hover,
  .gc-variation-card:hover,
  .gc-style-da0f200e:hover,
  .gc-style-31bcf59b:hover,
  .gc-viz-card:hover,
  .gc-rec-card:hover,
  .gc-docs-term:hover,
  .gc-docs-formula:hover {
    transform: none;
  }
}
