/* Scoped hero styles imported from the QKeyDB standalone landing page for previewing the richer hero layout without touching global CSS. */
.qkeydb-hero {
  --qkeydb-accent-orange: var(--qk-accent-orange);
  --qkeydb-accent-blue: var(--qk-accent-blue);
  --qkeydb-accent-orange-rgb: var(--qk-accent-orange-rgb);
  --qkeydb-accent-blue-rgb: var(--qk-accent-blue-rgb);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background:
    radial-gradient(circle at 15% 25%, rgb(var(--qkeydb-accent-orange-rgb) / 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 15%, rgb(var(--qkeydb-accent-blue-rgb) / 0.18) 0%, transparent 45%),
    linear-gradient(180deg, #050c1f 0%, #0f1c3a 45%, #1c1031 100%);
  position: relative;
  overflow: hidden;
  color: #f4f7ff;
}

.qkeydb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgb(var(--qkeydb-accent-orange-rgb) / 0.25) 0%, transparent 45%),
    radial-gradient(circle at 70% 30%, rgb(var(--qkeydb-accent-blue-rgb) / 0.2) 0%, transparent 50%);
  pointer-events: none;
  animation: qkeydb-gradient-shift 18s ease-in-out infinite;
  mix-blend-mode: screen;
}

.qkeydb-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgb(var(--qkeydb-accent-orange-rgb) / 0.08) 90deg,
    transparent 180deg,
    rgb(var(--qkeydb-accent-blue-rgb) / 0.08) 270deg,
    transparent 360deg
  );
  animation: qkeydb-hero-rotate 45s linear infinite;
  opacity: 0.65;
  pointer-events: none;
}

.qkeydb-hero .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  animation: qkeydb-parallax 40s linear infinite;
}

.qkeydb-hero .particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 20px rgb(var(--qkeydb-accent-orange-rgb) / 0.4);
  animation: qkeydb-particle-float 14s ease-in-out infinite alternate;
  opacity: 0.55;
}

.qkeydb-hero .particle:nth-child(odd) {
  background: rgb(var(--qkeydb-accent-blue-rgb) / 0.35);
  box-shadow: 0 0 20px rgb(var(--qkeydb-accent-blue-rgb) / 0.5);
}

.qkeydb-hero .particle:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; animation-duration: 15s; }
.qkeydb-hero .particle:nth-child(2) { top: 25%; left: 70%; animation-delay: 1s; animation-duration: 18s; }
.qkeydb-hero .particle:nth-child(3) { top: 65%; left: 20%; animation-delay: 2s; animation-duration: 20s; }
.qkeydb-hero .particle:nth-child(4) { top: 50%; left: 80%; animation-delay: 3s; animation-duration: 17s; }
.qkeydb-hero .particle:nth-child(5) { top: 30%; left: 40%; animation-delay: 1.5s; animation-duration: 19s; }
.qkeydb-hero .particle:nth-child(6) { top: 75%; left: 60%; animation-delay: 2.5s; animation-duration: 16s; }
.qkeydb-hero .particle:nth-child(7) { top: 85%; left: 25%; animation-delay: 0.5s; animation-duration: 21s; }
.qkeydb-hero .particle:nth-child(8) { top: 15%; left: 85%; animation-delay: 1.8s; animation-duration: 18s; }
.qkeydb-hero .particle:nth-child(9) { top: 55%; left: 10%; animation-delay: 2.8s; animation-duration: 22s; }
.qkeydb-hero .particle:nth-child(10) { top: 12%; left: 55%; animation-delay: 0.7s; animation-duration: 17s; }
.qkeydb-hero .particle:nth-child(11) { top: 68%; left: 78%; animation-delay: 1.2s; animation-duration: 19s; }
.qkeydb-hero .particle:nth-child(12) { top: 42%; left: 90%; animation-delay: 3.6s; animation-duration: 20s; }
.qkeydb-hero .particle:nth-child(13) { top: 5%; left: 35%; animation-delay: 2.3s; animation-duration: 16s; }
.qkeydb-hero .particle:nth-child(14) { top: 92%; left: 48%; animation-delay: 1.4s; animation-duration: 23s; }

.qkeydb-hero .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.qkeydb-hero .hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.qkeydb-hero--two-column .hero-content {
  text-align: left;
}

.qkeydb-hero--two-column .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 460px);
  gap: clamp(1.75rem, 3.2vw, 2.8rem);
  align-items: start;
}

.qkeydb-hero--two-column .hero-main-col {
  max-width: 780px;
  display: grid;
  gap: 1.4rem;
}

.qkeydb-hero .hero-col {
  z-index: 2;
}

.qkeydb-hero--two-column .hero-code-col {
  display: flex;
  justify-content: flex-end;
}

.qkeydb-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgb(var(--qkeydb-accent-orange-rgb) / 0.4);
  background: rgb(var(--qkeydb-accent-orange-rgb) / 0.12);
  color: var(--qkeydb-accent-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.qkeydb-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 4.15rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 0;
  text-shadow:
    0 12px 28px rgba(0, 0, 0, 0.55),
    0 0 25px rgb(var(--qkeydb-accent-orange-rgb) / 0.35);
  position: relative;
}

.qkeydb-hero .hero-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.75rem;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(var(--qkeydb-accent-orange-rgb) / 0.72) 0%, var(--qkeydb-accent-orange) 100%);
  box-shadow: 0 4px 16px rgb(var(--qkeydb-accent-orange-rgb) / 0.45);
}

.qkeydb-hero .gradient-text {
  background: linear-gradient(135deg, var(--qkeydb-accent-orange), var(--qkeydb-accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qkeydb-wordmark,
.qkey-wordmark,
.querykey-wordmark {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  white-space: nowrap;
}

.qkeydb-wordmark__lead,
.qkey-wordmark__lead,
.querykey-wordmark__lead {
  color: var(--qkeydb-accent-orange);
}

.qkeydb-wordmark__rest,
.qkey-wordmark__rest,
.querykey-wordmark__rest {
  color: var(--qkeydb-accent-blue);
}

.qkeydb-wordmark__suffix {
  color: var(--qkeydb-accent-blue);
}

.qkeydb-hero .highlight-orange { color: var(--qkeydb-accent-orange); }
.qkeydb-hero .highlight-blue { color: var(--qkeydb-accent-blue); }

.p-company-querykey-db .highlight-orange {
  color: var(--qkeydb-accent-orange);
}

.qkeydb-hero--two-column .hero-support {
  width: min(100%, 700px);
  text-align: left;
  display: grid;
  gap: 0.95rem;
  justify-items: start;
  padding: clamp(1rem, 2.4vw, 1.6rem) clamp(1rem, 2.6vw, 1.8rem);
  border-radius: 1.2rem;
  background: linear-gradient(140deg, rgba(20, 30, 60, 0.14), rgba(22, 23, 63, 0.08));
  border: 1px solid rgba(148, 169, 255, 0.18);
  box-shadow:
    0 10px 24px rgba(9, 14, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px) saturate(105%);
  backdrop-filter: blur(6px) saturate(105%);
}

.qkeydb-hero .hero-description {
  font-size: 1.14rem;
  line-height: 1.78;
  color: #c8d7ff;
  margin: 0;
}

.qkeydb-hero .hero-description-lead {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.28rem, 2.1vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
}

.qkeydb-hero--two-column .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
}

.qkeydb-hero .hero-buttons .btn {
  min-width: 170px;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.95rem 1.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qkeydb-hero .hero-buttons .btn-primary {
  background: linear-gradient(120deg, var(--qkeydb-accent-orange) 0%, rgb(var(--qkeydb-accent-orange-rgb) / 0.8) 80%);
  color: #1b102c;
}

.qkeydb-hero .hero-buttons .btn-secondary {
  background: linear-gradient(120deg, var(--qkeydb-accent-blue) 0%, rgb(var(--qkeydb-accent-blue-rgb) / 0.76) 85%);
  color: #f4f7ff;
}

.qkeydb-hero .hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.qkeydb-hero--two-column .hero-tertiary-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: #c8d7ff;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0.15rem 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.qkeydb-hero--two-column .hero-tertiary-link::after {
  content: '\2192';
  font-size: 0.95em;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.qkeydb-hero--two-column .hero-tertiary-link:hover,
.qkeydb-hero--two-column .hero-tertiary-link:focus {
  color: var(--qkeydb-accent-orange);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  box-shadow: none;
  transform: none;
}

.qkeydb-hero--two-column .hero-tertiary-link:hover::after,
.qkeydb-hero--two-column .hero-tertiary-link:focus::after {
  transform: translateX(2px);
}

.qkeydb-hero .code-preview {
  width: 100%;
  max-width: 460px;
  background: radial-gradient(circle at top, rgb(var(--qkeydb-accent-orange-rgb) / 0.12) 0%, rgba(7, 9, 20, 0.95) 60%);
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 35px 80px rgba(5, 9, 24, 0.65),
    0 0 0 1px rgb(var(--qkeydb-accent-orange-rgb) / 0.12);
  overflow: hidden;
  position: relative;
}

.qkeydb-hero .code-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 1.75rem 1.75rem 0 0;
  background: linear-gradient(90deg, rgb(var(--qkeydb-accent-orange-rgb) / 0.72) 0%, var(--qkeydb-accent-orange) 100%);
}

.qkeydb-hero .code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.qkeydb-hero .code-controls {
  display: flex;
  gap: 0.35rem;
}

.qkeydb-hero .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.qkeydb-hero .dot.red { background: #ff5f56; }
.qkeydb-hero .dot.yellow { background: #ffbd2e; }
.qkeydb-hero .dot.green { background: #27ca3f; }

.qkeydb-hero .code-title {
  font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: 0.9rem;
  color: #a3adc2;
}

.qkeydb-hero .code-content {
  padding: 1.75rem;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: 0.9rem;
  color: #f7f7f7;
  line-height: 1.7;
  background: #050914;
  min-height: 330px;
  border-radius: 0 0 1.75rem 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.qkeydb-hero .code-line {
  min-height: 1.4em;
  white-space: pre;
  letter-spacing: 0.01em;
}

.qkeydb-hero .code-caret {
  display: inline-block;
  width: 0.5rem;
  height: 1rem;
  background: var(--qkeydb-accent-orange);
  margin-left: 0.1rem;
  animation: qkeydb-caret-blink 1s steps(2, start) infinite;
  border-radius: 2px;
  box-shadow: 0 0 10px rgb(var(--qkeydb-accent-orange-rgb) / 0.7);
  vertical-align: bottom;
}

.qkeydb-hero .token-comment { color: #6b7280; font-style: italic; }
.qkeydb-hero .token-property { color: rgb(var(--qkeydb-accent-blue-rgb) / 0.85); }
.qkeydb-hero .token-keyword { color: rgb(var(--qkeydb-accent-blue-rgb) / 0.72); }
.qkeydb-hero .token-string { color: rgb(var(--qkeydb-accent-orange-rgb) / 0.8); }
.qkeydb-hero .token-number { color: var(--qkeydb-accent-orange); }
.qkeydb-hero .token-punctuation { color: #a3adc2; }

/* Page-specific standard card tuning:
   - remove large top/bottom spacing caused by shared fixed-height cards
   - keep copy fully visible without clipping in specs lists */
body.p-company-querykey-db .standard-grid.compact {
  --std-card-height: auto;
  grid-auto-rows: auto;
}

body.p-company-querykey-db .standard-section > .container > h2 {
  font-size: clamp(2.05rem, 4.4vw, 3.05rem);
  letter-spacing: -0.012em;
}

body.p-company-querykey-db #whatTitle {
  color: var(--std-accent-orange);
}

body.p-company-querykey-db #useCasesTitle {
  color: var(--std-accent-blue);
}

body.p-company-querykey-db #specsTitle {
  color: var(--std-accent-orange);
}

body.p-company-querykey-db .standard-card {
  height: auto;
  min-height: clamp(220px, 29vh, 300px);
  justify-content: flex-start;
  gap: 0.55rem;
}

body.p-company-querykey-db .standard-card :is(h2, h3) {
  margin: 0;
  line-height: 1.16;
}

body.p-company-querykey-db .standard-card p {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

body.p-company-querykey-db .standard-section[aria-labelledby="specsTitle"] .standard-card {
  min-height: clamp(290px, 37vh, 390px);
}

body.p-company-querykey-db .standard-section[aria-labelledby="specsTitle"] .compact-list {
  margin-top: 0.3rem;
}

body.p-company-querykey-db .qkey-tools-section,
body.p-company-querykey-db .qkey-live-tool-section,
body.p-company-querykey-db .qkey-scale-section,
body.p-company-querykey-db .qkey-scale-cta-section {
  position: relative;
  overflow: hidden;
}

body.p-company-querykey-db .qkey-tools-section {
  background-color: var(--std-rot-mid);
  background-image: var(--std-rot-pattern);
  border-top: 1px solid rgb(148 169 255 / 22%);
}

body.p-company-querykey-db .qkey-live-tool-section {
  background-color: var(--std-rot-dark);
  background-image: var(--std-rot-pattern);
  border-top: 1px solid rgb(var(--qkeydb-accent-orange-rgb) / 25%);
}

body.p-company-querykey-db .qkey-scale-section {
  background-color: var(--std-rot-cta);
  background-image: var(--std-rot-pattern);
  border-top: 1px solid rgb(var(--qkeydb-accent-blue-rgb) / 25%);
}

body.p-company-querykey-db .qkey-scale-cta-section {
  background-color: var(--std-rot-mid);
  background-image: var(--std-rot-pattern);
  border-top: 1px solid rgb(var(--qkeydb-accent-orange-rgb) / 25%);
}

body.p-company-querykey-db #ctaTitle {
  color: var(--std-accent-blue);
}

body.p-company-querykey-db .qkey-scale-section::before,
body.p-company-querykey-db .qkey-scale-cta-section::before {
  content: '';
  position: absolute;
  top: -45%;
  left: -45%;
  width: 190%;
  height: 190%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgb(var(--qkeydb-accent-blue-rgb) / 0.06) 95deg,
    transparent 180deg,
    rgb(var(--qkeydb-accent-orange-rgb) / 0.06) 275deg,
    transparent 360deg
  );
  animation: qkeydb-hero-rotate 80s linear infinite;
  pointer-events: none;
}

body.p-company-querykey-db .qkey-scale-cta-section::before {
  animation-direction: reverse;
  opacity: 0.75;
}

body.p-company-querykey-db .qkey-live-tool-section::after {
  content: '';
  position: absolute;
  top: -35%;
  left: -35%;
  width: 170%;
  height: 170%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgb(var(--qkeydb-accent-orange-rgb) / 0.06) 90deg,
    transparent 180deg,
    rgb(var(--qkeydb-accent-blue-rgb) / 0.06) 270deg,
    transparent 360deg
  );
  animation: qkeydb-hero-rotate 70s linear infinite;
  pointer-events: none;
}

body.p-company-querykey-db .qkey-scale-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgb(var(--qkeydb-accent-blue-rgb) / 0.1) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgb(var(--qkeydb-accent-orange-rgb) / 0.08) 0%, transparent 50%);
  pointer-events: none;
}

body.p-company-querykey-db .qkey-scale-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgb(var(--qkeydb-accent-orange-rgb) / 0.12) 0%, transparent 46%),
    radial-gradient(circle at 78% 68%, rgb(var(--qkeydb-accent-blue-rgb) / 0.1) 0%, transparent 52%);
  pointer-events: none;
}

body.p-company-querykey-db .qkey-tools-section > .container,
body.p-company-querykey-db .qkey-live-tool-section > .container,
body.p-company-querykey-db .qkey-scale-section > .container,
body.p-company-querykey-db .qkey-scale-cta-section > .container {
  position: relative;
  z-index: 1;
}

body.p-company-querykey-db .qkey-tool-hint {
  margin: 0 0 0.5rem;
  color: var(--std-text-muted);
}

body.p-company-querykey-db .qkey-tool-textarea {
  width: 100%;
  min-height: 280px;
  resize: vertical;
  border: 1px solid rgb(148 169 255 / 0.35);
  border-radius: 0.7rem;
  padding: 0.85rem;
  font-family: var(--font-family-code, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e6eeff;
  background: rgb(8 15 32 / 82%);
}

body.p-company-querykey-db .qkey-tool-textarea:focus {
  outline: 2px solid rgb(var(--qkeydb-accent-blue-rgb) / 0.45);
  outline-offset: 2px;
}

body.p-company-querykey-db .qkey-tool-status {
  margin-top: 0.55rem;
  margin-bottom: 0;
  color: var(--std-text-muted);
}

/* Smooth section transitions on QKeyDB: remove shared seam lines/fade strips
   that can read as an unintended border between background bands. */
body.p-company-querykey-db .standard-section.standard-section-tint,
body.p-company-querykey-db .standard-section.standard-section-accent,
body.p-company-querykey-db .standard-section.standard-cta {
  border-top-color: transparent;
}

body.p-company-querykey-db .standard-section.standard-section-accent::before {
  content: none;
}

@keyframes qkeydb-parallax {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-30px, -40px, 0); }
  100% { transform: translate3d(15px, 25px, 0); }
}

@keyframes qkeydb-gradient-shift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate3d(-40px, -60px, 0) scale(1.15); opacity: 1; }
  100% { transform: translate3d(20px, 40px, 0) scale(0.95); opacity: 0.85; }
}

@keyframes qkeydb-hero-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes qkeydb-particle-float {
  0% { transform: translate3d(0, 0, 0) scale(0.75); opacity: 0.15; }
  40% { transform: translate3d(45px, -60px, 0) scale(1.25); opacity: 0.8; }
  70% { transform: translate3d(-30px, -20px, 0) scale(0.95); opacity: 0.5; }
  100% { transform: translate3d(15px, -50px, 0) scale(0.8); opacity: 0.2; }
}

@keyframes qkeydb-caret-blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (max-width: 1080px) {
  .qkeydb-hero--two-column .hero-content {
    text-align: left;
  }

  .qkeydb-hero--two-column .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .qkeydb-hero--two-column .hero-main-col {
    max-width: none;
    order: 1;
  }

  .qkeydb-hero--two-column .hero-code-col {
    justify-content: flex-start;
    order: 2;
  }

  .qkeydb-hero .hero-title::after {
    left: 0;
    transform: none;
  }

  .qkeydb-hero--two-column .hero-support {
    text-align: left;
    width: min(100%, 760px);
  }

  .qkeydb-hero--two-column .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .qkeydb-hero {
    min-height: 0;
    padding: 4rem 0;
  }

  .qkeydb-hero .hero-container {
    padding: 0 1.15rem;
  }

  .qkeydb-hero .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .qkeydb-hero--two-column .hero-support {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
  }

  .qkeydb-hero .hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .qkeydb-hero--two-column .hero-code-col {
    justify-content: center;
  }

  .qkeydb-hero .hero-buttons .btn {
    width: 100%;
    min-width: 0;
  }

  .qkeydb-hero .code-content {
    min-height: 280px;
    font-size: 0.84rem;
  }

  body.p-company-querykey-db .standard-card {
    min-height: 0;
  }
}

:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero {
  background:
    radial-gradient(circle at 15% 25%, rgb(var(--qkeydb-accent-orange-rgb) / 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 15%, rgb(var(--qkeydb-accent-blue-rgb) / 0.14) 0%, transparent 48%),
    linear-gradient(180deg, #f4f8ff 0%, #eaf1ff 50%, #f7faff 100%);
  color: #132241;
}

:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero::before,
:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero::after {
  opacity: 0.45;
  mix-blend-mode: normal;
}

:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .hero-description,
:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .hero-tertiary-link {
  color: #334a73;
}

:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .hero-support {
  background: linear-gradient(140deg, rgb(255 255 255 / 82%), rgb(241 247 255 / 78%));
  border-color: rgb(43 67 160 / 18%);
  box-shadow: 0 12px 28px rgb(15 23 42 / 12%), inset 0 1px 0 rgb(255 255 255 / 90%);
}

:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .hero-badge {
  background: rgb(var(--qkeydb-accent-orange-rgb) / 0.14);
  border-color: rgb(var(--qkeydb-accent-orange-rgb) / 0.34);
}

:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .code-preview {
  background: linear-gradient(180deg, #fff 0%, #f4f8ff 100%);
  border-color: rgb(43 67 160 / 18%);
  box-shadow: 0 20px 44px rgb(15 23 42 / 12%);
}

:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .code-header,
:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .code-content {
  background: #f7faff;
  border-color: rgb(43 67 160 / 12%);
  color: #1e2e54;
}

:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .token-comment { color: #6b7280; }
:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .token-property { color: rgb(var(--qkeydb-accent-blue-rgb) / 0.82); }
:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .token-keyword { color: rgb(var(--qkeydb-accent-blue-rgb) / 0.72); }
:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .token-string { color: rgb(var(--qkeydb-accent-orange-rgb) / 0.78); }
:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkeydb-hero .token-punctuation { color: #4b5563; }

:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkey-tool-textarea {
  color: #1e2e54;
  background: rgb(255 255 255 / 92%);
  border-color: rgb(43 67 160 / 25%);
}

:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkey-tool-hint,
:is(body.light-mode.p-company-querykey-db, html.light-mode body.p-company-querykey-db, body.p-company-querykey-db[data-theme="light"], html[data-theme="light"] body.p-company-querykey-db) .qkey-tool-status {
  color: #3b4e75;
}
