:root {
  --primary-color: #8ab4f8;
  --secondary-color: #8ab4f8;
  --background-color: #ffffff;
  --text-color: #1e293b;
  --light-bg: #f8fafc;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-color);
  padding-top: 76px;
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color);
}

.nav-link.btn-primary {
  color: white;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #8ab4f8 0%, #8ab4f8 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  padding: 0.8rem 2rem;
  font-weight: 500;
}

.hero-stats {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.2s ease-in-out;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Workflow Section */
.workflow {
  padding: 100px 0;
}

.workflow-steps {
  margin-top: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #8ab4f8 0%, #8ab4f8 100%);
  color: white;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-image {
    margin-top: 3rem;
  }

  .features, .workflow, .cta {
    padding: 60px 0;
  }
}

.navbar-logo {
  margin-right: 8px;
  vertical-align: middle;
}

/* BioChemIntelli Studio design system */
body.studio-page {
  --studio-bg: #101112;
  --studio-surface: #151719;
  --studio-surface-2: #1b1d20;
  --studio-panel: rgba(255, 255, 255, 0.045);
  --studio-panel-strong: rgba(255, 255, 255, 0.075);
  --studio-text: #f4f6f8;
  --studio-muted: #a4a8ae;
  --studio-quiet: #747a83;
  --studio-line: rgba(255, 255, 255, 0.09);
  --studio-line-strong: rgba(255, 255, 255, 0.18);
  --studio-accent: #8ab4f8;
  --studio-brand: #8ab4f8;
  --studio-brand-rgb: 138, 180, 248;
  --studio-success: #81c995;
  --studio-amber: #fdd663;
  --studio-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, #17191b 0%, #111214 58%, #0d0e0f 100%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
  color: var(--studio-text);
  padding-top: 86px;
}

body.studio-page::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 17, 18, 0.08), rgba(16, 17, 18, 0.72) 72%, #0d0e0f),
    linear-gradient(115deg, rgba(138, 180, 248, 0.11), transparent 34%),
    linear-gradient(250deg, rgba(129, 201, 149, 0.08), transparent 31%);
}

body.studio-page .navbar {
  top: 22px;
  left: 50%;
  width: min(1180px, calc(100% - 56px));
  padding: 0;
  border: 1px solid var(--studio-line);
  border-radius: 16px;
  background: rgba(21, 23, 25, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
}

body.studio-page .navbar > .container {
  min-height: 58px;
}

body.studio-page .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--studio-text) !important;
  font-size: 1.04rem;
  font-weight: 750;
}

body.studio-page .navbar-logo {
  width: 38px;
  height: 38px;
  margin-right: 0;
  padding: 7px;
  border: 1px solid rgba(138, 180, 248, 0.32);
  border-radius: 12px;
  background:
    radial-gradient(circle at 35% 28%, rgba(138, 180, 248, 0.18), transparent 42%),
    rgba(6, 8, 12, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

body.studio-page .navbar-brand .navbar-logo path {
  stroke: var(--studio-brand) !important;
  stroke-width: 17;
  filter: drop-shadow(0 0 7px rgba(138, 180, 248, 0.62));
}

body.studio-page .footer .navbar-logo path {
  stroke: var(--studio-brand) !important;
  filter: drop-shadow(0 0 7px rgba(var(--studio-brand-rgb), 0.5));
}

body.studio-page .nav-link {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 650;
}

body.studio-page .nav-link:hover,
body.studio-page .nav-link:focus {
  color: var(--studio-text);
}

body.studio-page .nav-link.btn-primary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  padding: 0 16px !important;
  border: 1px solid rgba(138, 180, 248, 0.72);
  border-radius: 12px;
  background: linear-gradient(180deg, #eff5ff 0%, #a7c8ff 100%);
  color: #08111f !important;
  font-weight: 850;
  text-shadow: none;
  box-shadow: 0 12px 28px rgba(138, 180, 248, 0.22);
  white-space: nowrap;
}

body.studio-page .nav-link.btn-primary:hover,
body.studio-page .nav-link.btn-primary:focus {
  border-color: rgba(194, 216, 255, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #bad3ff 100%);
  color: #050a12 !important;
}

body.studio-page .navbar-toggler {
  border-color: var(--studio-line-strong);
  background: rgba(255, 255, 255, 0.08);
}

body.studio-page .navbar-toggler-icon {
  filter: invert(1);
}

.studio-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.studio-hero-block {
  position: relative;
  padding: 82px 0 40px;
  text-align: center;
}

.studio-eyebrow {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 0 14px;
  border: 1px solid var(--studio-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--studio-muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.studio-eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--studio-accent);
  box-shadow: 0 0 12px rgba(138, 180, 248, 0.85);
  content: "";
}

.studio-hero-block h1,
body.studio-page .tools-hero h1,
body.studio-page .toolkit-hero h1,
body.studio-page .proteinprofiler-section h1,
body.studio-page .results-section h1 {
  color: var(--studio-text) !important;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.studio-hero-block p,
body.studio-page .tools-hero .lead,
body.studio-page .toolkit-hero .lead,
body.studio-page .proteinprofiler-section .lead,
body.studio-page .results-section p {
  color: var(--studio-muted) !important;
}

.studio-info-card,
body.studio-page .filters-card,
body.studio-page .card {
  border: 1px solid var(--studio-line) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  color: var(--studio-text);
}

body.studio-page .card-header {
  border-bottom: 1px solid var(--studio-line) !important;
  background: rgba(0, 0, 0, 0.18) !important;
  color: var(--studio-text);
}

body.studio-page .text-muted,
body.studio-page .card-text {
  color: var(--studio-muted) !important;
}

body.studio-page .tool-card,
body.studio-page .workflow-card {
  min-height: 100%;
  border: 1px solid var(--studio-line) !important;
  border-radius: 10px !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(138, 180, 248, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032)) !important;
  color: var(--studio-text) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  transition: transform 180ms ease, border-color 180ms ease;
}

body.studio-page .tool-card:hover,
body.studio-page .workflow-card:hover,
body.studio-page .hover-lift:hover {
  border-color: rgba(138, 180, 248, 0.28) !important;
  transform: translateY(-3px);
}

body.studio-page .tool-card .d-flex > a:not(.btn) {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 18px;
  border: 1px solid var(--studio-line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--studio-text) !important;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

body.studio-page .tool-card .btn {
  min-width: 132px;
  white-space: nowrap;
}

/* Reglas de alineación perfecta y centrado para botones btn en toda la app studio-page */
body.studio-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  gap: 6px;
}

body.studio-page .btn .bi {
  display: inline-flex;
  align-items: center;
  margin-right: 0 !important; /* Sobrescribir me-2 u otras clases de margen para evitar desajustes de centrado */
  font-size: 0.92em;
  line-height: 1;
  flex-shrink: 0;
}

body.studio-page .tool-card .d-flex > a:not(.btn):hover {
  border-color: rgba(138, 180, 248, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

body.studio-page .tool-card .d-flex > a:not(.btn) .bi {
  display: inline-flex;
  align-items: center;
  font-size: 0.92em;
  line-height: 1;
  opacity: 0.82;
  flex-shrink: 0;
}

body.studio-page .tool-icon,
body.studio-page .workflow-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(138, 180, 248, 0.28) !important;
  border-radius: 14px !important;
  background: rgba(138, 180, 248, 0.08) !important; /* Sobrescribe de forma absoluta backgrounds planos inline */
  color: var(--studio-accent) !important;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease !important;
}

body.studio-page .tool-icon i {
  display: none !important; /* Ocultar los diferentes iconos del HTML para homogeneizar */
}

/* Inyectar un único icono premium de precisión científica (fa-dna de FontAwesome) en toda la suite */
body.studio-page .tool-icon::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f471"; /* Unicode para fa-dna en FontAwesome */
  font-size: 1.35rem !important;
  color: var(--studio-accent) !important;
  text-shadow: 0 0 12px rgba(138, 180, 248, 0.4);
}

body.studio-page .workflow-icon,
body.studio-page .service-icon,
body.studio-page .icon-wrapper,
body.studio-page .blog-topics-heading i,
body.studio-page .filters-card i.fa-flask-vial,
body.studio-catalog-page .who-i-work-with .card i {
  border-color: rgba(var(--studio-brand-rgb), 0.28) !important;
  background: rgba(var(--studio-brand-rgb), 0.08) !important;
  color: var(--studio-brand) !important;
}

body.studio-page .workflow-icon svg,
body.studio-page .icon-wrapper i,
body.studio-catalog-page .who-i-work-with .card i {
  color: var(--studio-brand) !important;
  fill: none;
  stroke: currentColor;
}

body.studio-page .service-icon i,
body.studio-page .blog-topics-heading i,
body.studio-page .filters-card i.fa-flask-vial {
  color: var(--studio-brand) !important;
}

body.studio-page .badge {
  border: 1px solid var(--studio-line);
  border-radius: 999px;
  background: rgba(138, 180, 248, 0.1) !important;
  color: #d8e6ff !important;
}

body.studio-page .btn,
body.studio-page .btn-warning,
body.studio-page .btn-outline-primary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 11px;
  font-weight: 750;
  line-height: 1.1;
}

body.studio-page .studio-action-icon {
  width: 1em;
  text-align: center;
  font-size: 0.92em;
}

body.studio-page .btn-warning,
body.studio-page .btn-primary,
body.studio-page button[type="submit"],
body.studio-page .btn:not([class*="btn-outline"]):not(.nav-link):not(.navbar-toggler):not(.btn-close):not(.btn-dark):not(.btn-info):not(.btn-success):not(.btn-danger):not(.btn-secondary),
body.studio-page .card a.btn:not(.btn-outline-secondary):not(.btn-outline-primary) {
  border: 1px solid rgba(138, 180, 248, 0.55) !important;
  background: linear-gradient(180deg, #dce8ff 0%, #96bdff 100%) !important;
  color: #101317 !important;
}

body.studio-page .btn-outline-secondary,
body.studio-page .btn-outline-primary {
  border-color: var(--studio-line-strong) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--studio-text) !important;
}

body.studio-page .form-control,
body.studio-page textarea,
body.studio-page input,
body.studio-page select {
  border: 1px solid var(--studio-line-strong) !important;
  border-radius: 11px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  color: var(--studio-text) !important;
}

body.studio-page .form-control:focus,
body.studio-page textarea:focus,
body.studio-page input:focus,
body.studio-page select:focus {
  border-color: rgba(138, 180, 248, 0.58) !important;
  box-shadow: 0 0 0 4px rgba(138, 180, 248, 0.12) !important;
  outline: none;
}

body.studio-page textarea.form-control,
body.studio-page textarea {
  min-height: 180px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    rgba(0, 0, 0, 0.34) !important;
  background-size: 24px 24px, 24px 24px, 100% 100% !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

body.studio-page .form-control::placeholder {
  color: rgba(244, 246, 248, 0.44);
}

body.studio-page input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  min-height: 46px;
  padding-right: 16px !important;
  padding-left: 16px !important;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

body.studio-page input[type="number"]::-webkit-outer-spin-button,
body.studio-page input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

body.studio-page .studio-stepper {
  display: grid;
  grid-template-columns: 38px minmax(64px, 1fr) 38px;
  width: 100%;
  min-height: 46px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--studio-line-strong);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022)),
    rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.065);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

body.studio-page .studio-stepper:focus-within {
  border-color: rgba(138, 180, 248, 0.58);
  box-shadow:
    0 0 0 4px rgba(138, 180, 248, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body.studio-page .studio-stepper input[type="number"] {
  width: 100%;
  min-height: 44px;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--studio-text) !important;
  text-align: center;
}

body.studio-page .studio-stepper-btn {
  display: grid;
  min-width: 38px;
  min-height: 44px;
  place-items: center;
  border: 0;
  background: rgba(138, 180, 248, 0.075);
  color: var(--studio-accent);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

body.studio-page .studio-stepper-btn:first-child {
  border-right: 1px solid var(--studio-line);
}

body.studio-page .studio-stepper-btn:last-child {
  border-left: 1px solid var(--studio-line);
}

body.studio-page .studio-stepper-btn:hover:not(:disabled) {
  background: rgba(138, 180, 248, 0.16);
  color: #dce8ff;
}

body.studio-page .studio-stepper-btn:focus-visible {
  outline: 2px solid rgba(138, 180, 248, 0.72);
  outline-offset: -2px;
}

body.studio-page .studio-stepper-btn:disabled {
  color: rgba(244, 246, 248, 0.24);
  cursor: not-allowed;
  opacity: 0.58;
}

body.studio-page .studio-stepper-btn i {
  font-size: 0.76rem;
}

body.studio-page .form-label,
body.studio-page .form-text {
  color: var(--studio-muted);
}

body.studio-page .form-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  font-weight: 750;
}

body.studio-page .form-label:has(+ .row input[type="file"])::before {
  display: inline-grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(138, 180, 248, 0.28);
  border-radius: 9px;
  background-color: rgba(138, 180, 248, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 16V6m0 0 4 4m-4-4-4 4' stroke='%238ab4f8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 15v3h14v-3' stroke='%238ab4f8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  content: "";
}

body.studio-page .studio-upload-control {
  position: relative;
  display: grid;
  min-height: 88px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  overflow: hidden;
  border: 1px dashed rgba(138, 180, 248, 0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 14% 20%, rgba(138, 180, 248, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.045);
  color: var(--studio-text);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.studio-page .row > [class*="col-"]:has(> input[type="file"]),
body.studio-page .row > [class*="col-"]:has(> .studio-upload-control) {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

body.studio-page input[type="file"]:not(.studio-upload-input) {
  min-height: 72px;
  width: 100%;
  padding: 13px !important;
  border: 1px dashed rgba(138, 180, 248, 0.34) !important;
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 10% 30%, rgba(138, 180, 248, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.045) !important;
  color: var(--studio-muted) !important;
  cursor: pointer;
}

body.studio-page input[type="file"]:not(.studio-upload-input)::file-selector-button {
  min-height: 44px;
  margin-right: 14px;
  padding: 0 16px;
  border: 1px solid rgba(138, 180, 248, 0.5);
  border-radius: 11px;
  background: linear-gradient(180deg, #dce8ff 0%, #96bdff 100%);
  color: #101317;
  font-weight: 800;
  cursor: pointer;
}

body.studio-page .studio-upload-control:hover,
body.studio-page .studio-upload-control.is-dragging {
  border-color: rgba(138, 180, 248, 0.72);
  background:
    radial-gradient(circle at 14% 20%, rgba(138, 180, 248, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.065);
  transform: translateY(-1px);
}

body.studio-page .studio-upload-control.has-file {
  border-color: rgba(129, 201, 149, 0.64);
  background:
    radial-gradient(circle at 14% 20%, rgba(129, 201, 149, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.052);
}

body.studio-page .studio-upload-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(138, 180, 248, 0.34);
  border-radius: 13px;
  background: rgba(138, 180, 248, 0.12);
  color: var(--studio-accent);
  font-size: 1.2rem;
}

body.studio-page .studio-upload-control.has-file .studio-upload-icon {
  border-color: rgba(129, 201, 149, 0.42);
  background: rgba(129, 201, 149, 0.12);
  color: var(--studio-success);
}

body.studio-page .studio-upload-copy {
  min-width: 0;
}

body.studio-page .studio-upload-copy strong,
body.studio-page .studio-upload-copy small {
  display: block;
}

body.studio-page .studio-upload-copy strong {
  color: var(--studio-text);
  font-size: 0.98rem;
  font-weight: 800;
}

body.studio-page .studio-upload-copy small {
  margin-top: 4px;
  color: var(--studio-muted);
  font-size: 0.86rem;
}

body.studio-page .studio-upload-status {
  max-width: 220px;
  padding: 8px 11px;
  overflow: hidden;
  border: 1px solid var(--studio-line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--studio-muted);
  font-size: 0.82rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.studio-page .studio-upload-control.has-file .studio-upload-status {
  border-color: rgba(129, 201, 149, 0.28);
  color: #c9f4d2;
}

body.studio-page .studio-upload-input {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  cursor: pointer;
}

body.studio-page .studio-upload-control + small[x-show="fileName"] {
  display: none !important;
}

body.studio-page section,
body.studio-page .reference-section,
body.studio-page .toolkit-hero,
body.studio-page .tools-hero,
body.studio-page .proteinprofiler-section,
body.studio-page .results-section {
  background: transparent !important;
}

body.studio-page .bg-light,
body.studio-page .bg-white {
  background: rgba(255, 255, 255, 0.045) !important;
  color: var(--studio-text) !important;
}

body.studio-page .phobicity-plot-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(36, 50, 74, 0.14);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

body.studio-page .phobicity-plot-panel .js-plotly-plot,
body.studio-page .phobicity-plot-panel .plotly-graph-div,
body.studio-page .phobicity-plot-panel .plot-container,
body.studio-page .phobicity-plot-panel .svg-container,
body.studio-page .phobicity-plot-panel .main-svg {
  max-width: 100% !important;
}

body.studio-page .phobicity-plot-panel .plotly-graph-div {
  width: 100% !important;
  min-width: 0 !important;
}

body.studio-page .phobicity-plot-panel .modebar {
  right: 8px !important;
}

body.studio-page h1,
body.studio-page h2,
body.studio-page h3,
body.studio-page h4,
body.studio-page h5,
body.studio-page h6,
body.studio-page h1[style],
body.studio-page h2[style],
body.studio-page h3[style] {
  color: var(--studio-text) !important;
}

body.studio-page p,
body.studio-page li,
body.studio-page .lead {
  color: var(--studio-muted);
}

body.studio-page strong {
  color: var(--studio-text);
}

body.studio-page .text-primary,
body.studio-page a.text-primary {
  color: var(--studio-accent) !important;
}

body.studio-page h1.display-3,
body.studio-page h1.display-4,
body.studio-page h1.display-5 {
  color: var(--studio-text) !important;
}

body.studio-page .text-success {
  color: var(--studio-success) !important;
}

body.studio-page .text-info {
  color: #b8d7ff !important;
}

body.studio-page .text-danger {
  color: #f6aea9 !important;
}

body.studio-page .alert {
  border: 1px solid var(--studio-line-strong);
  border-radius: 12px;
  background: rgba(138, 180, 248, 0.09);
  color: var(--studio-text);
}

body.studio-page button[type="submit"] .spinner-border {
  display: none !important;
}

body.studio-page .accordion-item {
  overflow: hidden;
  border: 1px solid var(--studio-line) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--studio-text);
}

body.studio-page .accordion-item + .accordion-item {
  margin-top: 10px;
}

body.studio-page .accordion-button,
body.studio-page .accordion-button:not(.collapsed) {
  border: 0;
  background: rgba(255, 255, 255, 0.045) !important;
  color: var(--studio-text) !important;
  box-shadow: none !important;
  font-weight: 750;
}

body.studio-page .accordion-button::after {
  filter: invert(1) grayscale(1);
  opacity: 0.72;
}

body.studio-page .accordion-body {
  color: var(--studio-muted);
}

body.studio-page .border,
body.studio-page .border-start,
body.studio-page .border-primary,
body.studio-page .border-success,
body.studio-page .border-danger {
  border-color: var(--studio-line-strong) !important;
}

body.studio-page .newsletter-card,
body.studio-page .categories-wrapper,
body.studio-page .service-item .p-3 {
  border: 1px solid var(--studio-line) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: var(--studio-text) !important;
}

body.studio-page .tools-hero,
body.studio-page .toolkit-hero,
body.studio-page .proteinprofiler-section > .container:first-child,
body.studio-page .results-section > .container:first-child {
  padding-top: 76px !important;
}

body.studio-page .tools-filters,
body.studio-page .tools-grid,
body.studio-page .toolkit-grid,
body.studio-page .reference-section {
  background: transparent !important;
}

body.studio-page .table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--studio-text);
  --bs-table-hover-bg: rgba(138, 180, 248, 0.06);
  --bs-table-hover-color: var(--studio-text);
  color: var(--studio-text);
}

body.studio-page .table th {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.studio-page .table td,
body.studio-page .table th {
  border-color: var(--studio-line);
}

body.studio-page .table-light {
  --bs-table-bg: rgba(255, 255, 255, 0.04);
  --bs-table-color: var(--studio-text);
}

body.studio-page .table-responsive {
  border-radius: 0 0 12px 12px;
}

body.studio-page .footer {
  width: min(1180px, calc(100% - 48px));
  margin: 42px auto 0;
  padding: 28px !important;
  border: 1px solid var(--studio-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.026);
  color: var(--studio-text);
}

body.studio-page .footer h6,
body.studio-page .footer .fw-semibold {
  color: var(--studio-text);
}

body.studio-page .footer a {
  color: var(--studio-muted) !important;
}

body.studio-page .footer a:hover {
  color: var(--studio-text) !important;
}

body.studio-page .footer hr {
  border-color: var(--studio-line);
  opacity: 1;
}

body.studio-page [x-data="shareButtons"] {
  display: none !important;
}

/* ==========================================
   DISEÑO PREMIUM EN DETALLE DE HERRAMIENTAS
   ========================================== */

/* Secciones de herramientas individuales */
body.studio-page .prota-section,
body.studio-page section:has(.fastaForm),
body.studio-page section:has(form) {
  position: relative;
  padding: 82px 0 20px !important;
  background: transparent !important;
}

/* Efecto de resplandor de fondo focalizado detrás del formulario */
body.studio-page .prota-section::after {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 600px;
  height: 350px;
  transform: translate(-50%, -20%);
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(138, 180, 248, 0.11) 0%, transparent 70%);
  filter: blur(40px);
}

/* Título de la herramienta ultra-elegante */
body.studio-page .prota-section h1.display-4 {
  font-size: 3.6rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
  background: linear-gradient(135deg, #ffffff 30%, #a2c4fd 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 12px 30px rgba(138, 180, 248, 0.1) !important;
  margin-bottom: 8px !important;
}

/* Tarjeta conceptual de descripción (Lead Card) */
body.studio-page .prota-section .card.bg-dark {
  border: 1px solid rgba(138, 180, 248, 0.15) !important;
  border-radius: 16px !important;
  background: rgba(21, 23, 25, 0.58) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
  margin-top: 18px !important;
}

body.studio-page .prota-section .card.bg-dark .card-body {
  padding: 18px 24px !important;
}

body.studio-page .prota-section .card.bg-dark .lead {
  font-size: 1.08rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  color: #c4c9d2 !important;
}

/* Estilización premium del formulario de secuencias FASTA */
body.studio-page .fastaForm,
body.studio-page section:has(.fastaForm) .card,
body.studio-page section:has(form) .card {
  border: 1px solid var(--studio-line) !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(25, 27, 30, 0.72) 0%, rgba(18, 20, 22, 0.88) 100%) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

body.studio-page .fastaForm:hover,
body.studio-page section:has(.fastaForm) .card:hover,
body.studio-page section:has(form) .card:hover {
  border-color: rgba(138, 180, 248, 0.22) !important;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 30px rgba(138, 180, 248, 0.03) !important;
}

/* Textarea y campos del formulario */
body.studio-page .fastaForm textarea,
body.studio-page section:has(.fastaForm) textarea {
  border-radius: 14px !important;
  border: 1px solid rgba(138, 180, 248, 0.16) !important;
  background: rgba(0, 0, 0, 0.45) !important;
  box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.4) !important;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  font-family: 'Fira Code', 'Courier New', monospace !important;
}

body.studio-page .fastaForm textarea:focus,
body.studio-page section:has(.fastaForm) textarea:focus {
  border-color: rgba(138, 180, 248, 0.65) !important;
  box-shadow:
    inset 0 3px 10px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(138, 180, 248, 0.12) !important;
}

/* Badge de límite de secuencias */
body.studio-page .fastaForm .badge.bg-light,
body.studio-page section:has(.fastaForm) .badge.bg-light {
  border: 1px solid rgba(138, 180, 248, 0.22) !important;
  background: rgba(138, 180, 248, 0.08) !important;
  color: var(--studio-accent) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
}

/* Títulos de secciones de formulario */
body.studio-page .fastaForm .form-label,
body.studio-page section:has(.fastaForm) .form-label {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
  color: #ffffff !important;
  margin-bottom: 12px !important;
}

/* Sección de Citación / Cita Científica */
body.studio-page .reference-section {
  position: relative;
  z-index: 1;
  padding: 40px 0 80px !important;
}

body.studio-page .reference-section .card {
  border: 1px solid rgba(138, 180, 248, 0.15) !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, rgba(23, 25, 28, 0.6) 0%, rgba(15, 17, 19, 0.72) 100%) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

body.studio-page .reference-section h2.h3 {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
  color: #ffffff !important;
  text-transform: uppercase;
  font-size: 0.88rem !important;
  letter-spacing: 0;
  margin-bottom: 24px !important;
  opacity: 0.85;
}

body.studio-page .reference-section .bi-journal-text {
  font-size: 2.5rem !important;
  color: var(--studio-accent) !important;
  text-shadow: 0 0 20px rgba(138, 180, 248, 0.3) !important;
}

body.studio-page .reference-section strong {
  color: #ffffff !important;
}

body.studio-page .reference-section em {
  color: var(--studio-muted) !important;
  font-size: 1.02rem !important;
}

@media (max-width: 991.98px) {
  body.studio-page .navbar {
    width: min(720px, calc(100% - 28px));
  }

  body.studio-page .navbar-collapse {
    padding: 10px 0 16px;
  }

  body.studio-page .nav-link.btn-primary {
    justify-content: center;
  }

  .studio-hero-block h1,
  body.studio-page .tools-hero h1,
  body.studio-page .toolkit-hero h1,
  body.studio-page .proteinprofiler-section h1,
  body.studio-page .results-section h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 575.98px) {
  body.studio-page [x-data="cookieConsent"] .row {
    gap: 12px;
  }

  body.studio-page [x-data="cookieConsent"] p {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  body.studio-page [x-data="cookieConsent"] .col-md-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    text-align: left !important;
  }

  body.studio-page [x-data="cookieConsent"] .btn {
    margin: 0 !important;
  }
}

/* ==========================================
   DISEÑO PREMIUM BIOCHEM TOOLKITS
   ========================================== */

/* Cabecera del catálogo */
body.studio-catalog-page .toolkit-hero,
body.studio-catalog-page .tools-hero {
  position: relative;
  padding: 82px 0 30px !important;
  text-align: center;
}

body.studio-catalog-page .toolkit-hero h1,
body.studio-catalog-page .tools-hero h1 {
  font-size: 4rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
  background: linear-gradient(135deg, #ffffff 30%, #a2c4fd 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 15px 35px rgba(138, 180, 248, 0.12) !important;
}

/* Tarjeta de filtro / descripción del toolkit */
body.studio-catalog-page .filters-card {
  border: 1px solid var(--studio-line) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(25, 27, 30, 0.6) 0%, rgba(18, 20, 22, 0.8) 100%) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  padding: 24px !important;
}

body.studio-catalog-page .toolkit-grid .filters-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(138, 180, 248, 0.16) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(90deg, rgba(138, 180, 248, 0.1), transparent 42%),
    rgba(16, 18, 20, 0.46) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

body.studio-catalog-page .toolkit-grid .filters-card::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: var(--studio-accent);
  content: "";
  opacity: 0.82;
}

body.studio-catalog-page .toolkit-grid .filters-card .col-auto {
  display: grid !important;
  width: 58px;
  height: 58px;
  margin-left: 4px;
  place-items: center;
  border: 1px solid rgba(138, 180, 248, 0.24);
  border-radius: 16px;
  background: rgba(138, 180, 248, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.studio-catalog-page .filters-card h2 {
  font-weight: 800 !important;
  color: #ffffff !important;
}

body.studio-catalog-page .toolkit-grid .filters-card p.text-muted {
  max-width: 980px;
  color: rgba(244, 246, 248, 0.68) !important;
  line-height: 1.72;
}

body.studio-catalog-page .filters-card i.fa-flask-vial {
  color: var(--studio-accent) !important;
  text-shadow: 0 0 15px rgba(138, 180, 248, 0.3);
}

/* Tarjetas individuales de los Toolkits y Tools.html */
body.studio-catalog-page .toolkit-grid .card,
body.studio-catalog-page .tools-grid .tool-card {
  border: 1px solid var(--studio-line) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(138, 180, 248, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(25, 27, 30, 0.72) 0%, rgba(18, 20, 22, 0.88) 100%) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

body.studio-catalog-page .toolkit-grid .card:hover,
body.studio-catalog-page .tools-grid .tool-card:hover {
  border-color: rgba(138, 180, 248, 0.28) !important;
  transform: translateY(-4px);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 25px rgba(138, 180, 248, 0.04) !important;
}

body.studio-catalog-page .toolkit-grid .card h3,
body.studio-catalog-page .tools-grid .tool-card h3 {
  font-size: 1.22rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
  color: #ffffff !important;
  margin-top: 14px !important;
  margin-bottom: 8px !important;
}

body.studio-catalog-page .toolkit-grid .card .card-text,
body.studio-catalog-page .tools-grid .tool-card p {
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  color: var(--studio-muted) !important;
}

/* Ocultar los SVGs inline antiguos de biochemtoolkit.html y sustituirlos por un único icono de cristal premium */
body.studio-catalog-page .toolkit-grid .card svg {
  display: none !important;
}

body.studio-catalog-page .toolkit-grid .card .card-body::before {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(138, 180, 248, 0.28) !important;
  border-radius: 14px !important;
  background: rgba(138, 180, 248, 0.08) !important;
  color: var(--studio-accent) !important;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f552"; /* fa-toolbox (caja / kit de herramientas de precisión analítica) */
  font-size: 1.35rem !important;
  text-shadow: 0 0 12px rgba(138, 180, 248, 0.4);
  margin: 0 auto 16px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.studio-catalog-page .toolkit-grid .card:hover .card-body::before {
  transform: scale(1.08) rotate(2deg);
}

/* Badges e insignias de estado en las tarjetas */
body.studio-catalog-page .toolkit-grid .card .badge,
body.studio-catalog-page .tools-grid .tool-card .badge {
  border: 1px solid rgba(138, 180, 248, 0.22) !important;
  background: rgba(138, 180, 248, 0.08) !important;
  color: var(--studio-accent) !important;
  font-size: 0.74rem !important;
  font-weight: 750 !important;
  letter-spacing: 0;
}

/* Botón Launch Tool en los Toolkits y Tools.html */
body.studio-catalog-page .toolkit-grid .card a.btn,
body.studio-catalog-page .tools-grid .tool-card a.btn {
  border: 1px solid rgba(138, 180, 248, 0.55) !important;
  background: linear-gradient(180deg, #dce8ff 0%, #96bdff 100%) !important;
  color: #101317 !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  border-radius: 11px !important;
  padding: 10px 20px !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 10px 20px rgba(138, 180, 248, 0.12) !important;
}

body.studio-catalog-page .toolkit-grid .card a.btn:hover,
body.studio-catalog-page .tools-grid .tool-card a.btn:hover {
  background: linear-gradient(180deg, #ffffff 0%, #bad3ff 100%) !important;
  box-shadow: 0 12px 26px rgba(138, 180, 248, 0.22) !important;
  transform: translateY(-1px);
}

/* ==========================================
   DISEÑO PREMIUM BIOCHEM INSIGHTS (BLOG)
   ========================================== */

/* Cabecera del Blog */
body.studio-catalog-page .blog-hero {
  position: relative;
  padding: 82px 0 30px !important;
  text-align: center;
}

body.studio-catalog-page .blog-hero h1 {
  font-size: 4rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
  background: linear-gradient(135deg, #ffffff 30%, #a2c4fd 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 15px 35px rgba(138, 180, 248, 0.12) !important;
}

/* Estado de sin publicaciones */
body.studio-catalog-page .blog-content .col-12.text-center {
  border: 1px dashed rgba(138, 180, 248, 0.22) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  padding: 60px 40px !important;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.studio-catalog-page .blog-content .col-12.text-center h3 {
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
}

body.studio-catalog-page .blog-content .col-12.text-center::before {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(138, 180, 248, 0.28) !important;
  border-radius: 14px !important;
  background: rgba(138, 180, 248, 0.08) !important;
  color: var(--studio-accent) !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f05a"; /* fa-circle-info */
  font-size: 1.45rem !important;
  text-shadow: 0 0 12px rgba(138, 180, 248, 0.4);
  margin: 0 auto 20px;
}

body.studio-catalog-page .blog-topics {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 980px;
  margin-inline: auto;
  padding: 16px;
  border: 1px solid rgba(138, 180, 248, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(25, 27, 30, 0.76) 0%, rgba(14, 16, 18, 0.9) 100%),
    radial-gradient(circle at top left, rgba(138, 180, 248, 0.09), transparent 34%);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.studio-catalog-page .blog-topics-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding-inline: 4px 8px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

body.studio-catalog-page .blog-topics-heading i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(138, 180, 248, 0.24);
  border-radius: 10px;
  background: rgba(138, 180, 248, 0.08);
  color: var(--studio-accent);
}

body.studio-catalog-page .categories-wrapper {
  display: flex;
  flex: 1 1 420px;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
}

body.studio-catalog-page .topic-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

body.studio-catalog-page .topic-chip:hover,
body.studio-catalog-page .topic-chip.is-active {
  border-color: rgba(138, 180, 248, 0.45);
  background: rgba(138, 180, 248, 0.14);
  color: #ffffff;
  transform: translateY(-1px);
}

body.studio-catalog-page .topic-chip.is-active {
  box-shadow: inset 0 0 0 1px rgba(138, 180, 248, 0.18), 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Tarjeta de Newsletter */
body.studio-catalog-page .newsletter-card {
  border: 1px solid var(--studio-line) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, rgba(25, 27, 30, 0.72) 0%, rgba(18, 20, 22, 0.88) 100%) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  padding: 40px !important;
  max-width: 780px;
  margin: 40px auto 0;
}

body.studio-catalog-page .newsletter-card h4 {
  font-weight: 850 !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
}

body.studio-catalog-page .newsletter-card form input.form-control {
  min-height: 44px;
  padding: 10px 18px !important;
  border-radius: 12px !important;
}

body.studio-catalog-page .newsletter-card form button.btn-primary {
  min-height: 44px;
  padding: 0 24px !important;
  border-radius: 12px !important;
}

/* Sección de Características en Toolkits */
body.studio-catalog-page .toolkit-features {
  background: transparent !important;
  padding: 60px 0 !important;
}

body.studio-catalog-page .toolkit-features h2 {
  font-weight: 850 !important;
  color: #ffffff !important;
}

body.studio-catalog-page .toolkit-features .feature-card {
  border: 1px solid var(--studio-line) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(25, 27, 30, 0.72) 0%, rgba(18, 20, 22, 0.88) 100%) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  padding: 28px !important;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

body.studio-catalog-page .toolkit-features .feature-card:hover {
  border-color: rgba(138, 180, 248, 0.28) !important;
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45) !important;
}

body.studio-catalog-page .toolkit-features .feature-card h3 {
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
}

body.studio-catalog-page .toolkit-features .feature-card .icon-wrapper {
  display: inline-grid !important;
  width: 58px !important;
  height: 58px !important;
  place-items: center !important;
  margin-right: auto !important;
  margin-left: auto !important;
  border-radius: 16px !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body.studio-catalog-page .toolkit-features .feature-card i {
  color: var(--studio-accent) !important;
  text-shadow: 0 0 15px rgba(138, 180, 248, 0.35);
}

/* Call to Action en Acerca de */
body.studio-catalog-page .contact-cta h2 {
  font-weight: 850 !important;
  color: #ffffff !important;
}

/* ==========================================
   DISEÑO PREMIUM BIOCHEM CONTACT & FAQ
   ========================================== */

/* Cabecera Contacto */
body.studio-catalog-page .contact-hero {
  position: relative;
  padding: 82px 0 30px !important;
  text-align: center;
}

body.studio-catalog-page .contact-hero h1 {
  font-size: 4rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
  background: linear-gradient(135deg, #ffffff 30%, #a2c4fd 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 15px 35px rgba(138, 180, 248, 0.12) !important;
}

/* Formulario de Contacto Premium (Glassmorphism) */
body.studio-catalog-page .contact-form .card {
  border: 1px solid var(--studio-line) !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(25, 27, 30, 0.72) 0%, rgba(18, 20, 22, 0.88) 100%) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  padding: 40px !important;
  max-width: 800px;
  margin: 0 auto;
}

/* Formulario Inputs en Contacto */
body.studio-catalog-page .contact-form .form-control {
  border-radius: 12px !important;
  padding: 12px 16px !important;
}

body.studio-catalog-page .contact-form button[type="submit"] {
  min-height: 48px !important;
  font-size: 1rem !important;
  border-radius: 12px !important;
  margin-top: 10px;
}

/* Sección FAQ */
body.studio-catalog-page .faq h2 {
  font-weight: 850 !important;
  color: #ffffff !important;
}

body.studio-catalog-page .faq .accordion-item {
  border: 1px solid var(--studio-line) !important;
  border-radius: 14px !important;
  background: rgba(25, 27, 30, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

body.studio-catalog-page .faq .accordion-button {
  font-weight: 800 !important;
  font-size: 1.02rem !important;
  padding: 20px 24px !important;
  color: #ffffff !important;
}

body.studio-catalog-page .faq .accordion-button:not(.collapsed) {
  color: var(--studio-accent) !important;
}

body.studio-catalog-page .faq .accordion-body {
  padding: 20px 24px 24px !important;
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
  color: var(--studio-muted) !important;
}

/* Mobile QA fixes: keep long catalog headings and floating controls in-bounds. */
[data-share-widget] {
  z-index: 1040;
}

body.studio-page [data-share-toggle] {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 20, 24, 0.9);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

body.studio-page [data-share-toggle]:hover,
body.studio-page [data-share-toggle]:focus-visible,
body.studio-page [data-share-toggle][aria-expanded="true"] {
  border-color: rgba(138, 180, 248, 0.46);
  background: rgba(28, 33, 40, 0.96);
}

body.studio-page [data-share-toggle]:focus-visible {
  outline: 3px solid rgba(138, 180, 248, 0.3);
  outline-offset: 3px;
}

body.studio-page [data-share-options] {
  width: 54px;
  padding: 6px;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(10, 13, 17, 0.76);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

body.studio-page .share-network {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease,
    transform 160ms ease;
}

body.studio-page .share-network--facebook {
  background: #1877f2;
}

body.studio-page .share-network--x {
  background: #16191e;
}

body.studio-page .share-network--linkedin {
  background: #0a66c2;
}

body.studio-page .share-network--whatsapp {
  background: #159b61;
}

body.studio-page .share-network:hover {
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
  filter: brightness(1.08);
  transform: translateX(3px) scale(1.04);
}

body.studio-page .share-network:focus-visible {
  color: #ffffff;
  outline: 3px solid rgba(138, 180, 248, 0.36);
  outline-offset: 3px;
}

@media (max-width: 575.98px) {
  body.studio-catalog-page .about-hero,
  body.studio-catalog-page .contact-hero,
  body.studio-catalog-page .tools-hero,
  body.studio-catalog-page .toolkit-hero {
    padding: 48px 0 20px !important;
  }

  body.studio-catalog-page .about-hero h1,
  body.studio-catalog-page .contact-hero h1,
  body.studio-catalog-page .tools-hero h1,
  body.studio-catalog-page .toolkit-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 2.8rem) !important;
    overflow-wrap: anywhere;
  }

  body.studio-page [data-share-widget] {
    top: auto !important;
    right: 14px !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
    left: auto !important;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    margin-left: 0 !important;
    transform: none !important;
  }

  body.studio-page [data-share-toggle] {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  body.studio-page [data-share-toggle] small {
    display: none;
  }

  body.studio-page [data-share-options] {
    align-items: flex-end;
    margin: 0 6px 8px 0 !important;
  }

  body.studio-page .share-network:hover {
    transform: translateY(-2px) scale(1.04);
  }
}

/* ==========================================
   BIOCHEMINTELLI ABOUT — PRODUCT PLATFORM
   ========================================== */

body.about-page {
  --about-copy: #b8bdc5;
  --about-copy-strong: #d9dde3;
  --about-green: #81c995;
  --about-blue: #8ab4f8;
}

body.about-page main {
  overflow: hidden;
}

body.about-page .about-page-hero {
  position: relative;
  padding: 94px 0 86px;
}

body.about-page .about-page-hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 180, 248, 0.16), transparent 68%);
  pointer-events: none;
  content: "";
}

body.about-page .about-page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--studio-line-strong), transparent);
  content: "";
}

body.about-page .about-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: center;
}

body.about-page .about-hero-copy {
  max-width: 720px;
}

body.about-page .studio-eyebrow {
  margin-bottom: 28px;
}

body.about-page .about-hero-copy h1 {
  margin: 0;
  color: var(--studio-text);
  font-size: clamp(3.35rem, 5.5vw, 5.25rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

body.about-page .about-hero-copy h1 span {
  display: block;
  margin-top: 12px;
  background: linear-gradient(120deg, #dceaff 0%, #8ab4f8 52%, #81c995 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.about-page .about-hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--about-copy);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.7;
}

body.about-page .about-hero-actions,
body.about-page .about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

body.about-page .about-hero-actions .btn,
body.about-page .about-cta-actions .btn {
  min-height: 50px;
  padding: 0 22px !important;
  border-radius: 13px !important;
  font-size: 0.95rem;
  font-weight: 800;
}

body.about-page .about-hero-actions .btn-outline-primary,
body.about-page .about-cta-actions .btn-outline-primary {
  border-color: var(--studio-line-strong) !important;
  background: rgba(255, 255, 255, 0.035) !important;
  color: var(--studio-text) !important;
}

body.about-page .about-hero-actions .btn-outline-primary:hover,
body.about-page .about-hero-actions .btn-outline-primary:focus,
body.about-page .about-cta-actions .btn-outline-primary:hover,
body.about-page .about-cta-actions .btn-outline-primary:focus {
  border-color: rgba(138, 180, 248, 0.48) !important;
  background: rgba(138, 180, 248, 0.1) !important;
}

body.about-page .about-product-loop {
  position: relative;
  border: 1px solid rgba(138, 180, 248, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 8%, rgba(138, 180, 248, 0.14), transparent 35%),
    linear-gradient(160deg, rgba(28, 31, 35, 0.94), rgba(15, 17, 19, 0.92));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

body.about-page .about-product-loop::before {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  content: "";
}

body.about-page .about-product-loop-header,
body.about-page .about-loop-list,
body.about-page .about-loop-output {
  position: relative;
  z-index: 1;
}

body.about-page .about-product-loop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--studio-line);
  color: var(--about-copy-strong);
  font-size: 0.8rem;
  font-weight: 750;
}

body.about-page .about-loop-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--about-green);
  font-size: 0.72rem;
  white-space: nowrap;
}

body.about-page .about-loop-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px rgba(129, 201, 149, 0.7);
  content: "";
}

body.about-page .about-loop-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 12px 20px;
  list-style: none;
}

body.about-page .about-loop-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--studio-line);
}

body.about-page .about-loop-list li:last-child {
  border-bottom: 0;
}

body.about-page .about-loop-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(138, 180, 248, 0.2);
  border-radius: 11px;
  background: rgba(138, 180, 248, 0.07);
  color: var(--about-blue);
  font-size: 0.72rem;
  font-weight: 850;
}

body.about-page .about-loop-list strong,
body.about-page .about-loop-list small {
  display: block;
}

body.about-page .about-loop-list strong {
  margin-bottom: 5px;
  color: var(--studio-text);
  font-size: 0.96rem;
}

body.about-page .about-loop-list small {
  color: var(--about-copy);
  font-size: 0.82rem;
  line-height: 1.55;
}

body.about-page .about-loop-output {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
  border-top: 1px solid var(--studio-line);
  background: rgba(0, 0, 0, 0.2);
  color: var(--about-copy);
  font-size: 0.78rem;
}

body.about-page .about-loop-output strong {
  color: var(--about-green);
}

body.about-page .about-section {
  position: relative;
  padding: 92px 0;
}

body.about-page .about-section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

body.about-page .about-section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

body.about-page .about-kicker {
  margin: 0 0 14px;
  color: var(--about-blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.about-page .about-section h2,
body.about-page .about-final-cta h2 {
  margin: 0;
  color: var(--studio-text);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body.about-page .about-section-heading h2 span {
  display: block;
  color: var(--about-copy);
}

body.about-page .about-section-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--about-copy);
  font-size: 1.05rem;
  line-height: 1.7;
}

body.about-page .about-problem-section {
  background: rgba(0, 0, 0, 0.12);
}

body.about-page .about-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--studio-line-strong);
  border-bottom: 1px solid var(--studio-line);
}

body.about-page .about-problem-card {
  min-height: 300px;
  padding: 32px 34px 38px;
  border-right: 1px solid var(--studio-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

body.about-page .about-problem-card:last-child {
  border-right: 0;
}

body.about-page .about-card-index {
  display: inline-block;
  margin-bottom: 62px;
  color: var(--studio-quiet);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

body.about-page .about-problem-card h3 {
  margin: 0 0 14px;
  color: var(--studio-text);
  font-size: 1.25rem;
  font-weight: 750;
  line-height: 1.25;
}

body.about-page .about-problem-card p {
  margin: 0;
  color: var(--about-copy);
  font-size: 0.95rem;
  line-height: 1.7;
}

body.about-page .about-bridge-section::before {
  position: absolute;
  top: 18%;
  left: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 201, 149, 0.09), transparent 70%);
  pointer-events: none;
  content: "";
}

body.about-page .about-bridge-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

body.about-page .about-bridge-copy {
  position: sticky;
  top: 120px;
}

body.about-page .about-bridge-copy p:last-child {
  margin: 26px 0 0;
  color: var(--about-copy);
  font-size: 1.04rem;
  line-height: 1.75;
}

body.about-page .about-process-list {
  display: grid;
  border-top: 1px solid var(--studio-line-strong);
}

body.about-page .about-process-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--studio-line);
}

body.about-page .about-process-list article > span {
  padding-top: 4px;
  color: var(--about-blue);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.about-page .about-process-list h3 {
  margin: 0 0 10px;
  color: var(--studio-text);
  font-size: 1.28rem;
  font-weight: 750;
}

body.about-page .about-process-list p {
  margin: 0;
  color: var(--about-copy);
  line-height: 1.7;
}

body.about-page .about-model-section {
  border-top: 1px solid var(--studio-line);
  border-bottom: 1px solid var(--studio-line);
  background:
    radial-gradient(circle at 50% 0%, rgba(138, 180, 248, 0.09), transparent 42%),
    rgba(0, 0, 0, 0.18);
}

body.about-page .about-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

body.about-page .about-model-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--studio-line);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.about-page .about-model-open {
  border-top-color: rgba(129, 201, 149, 0.55);
}

body.about-page .about-model-commercial {
  border-top-color: rgba(138, 180, 248, 0.65);
}

body.about-page .about-model-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}

body.about-page .about-model-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

body.about-page .about-model-open .about-model-badge,
body.about-page .about-model-open .about-model-symbol {
  color: var(--about-green);
}

body.about-page .about-model-commercial .about-model-badge,
body.about-page .about-model-commercial .about-model-symbol {
  color: var(--about-blue);
}

body.about-page .about-model-symbol {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 700;
}

body.about-page .about-model-card h3 {
  margin: 0 0 14px;
  color: var(--studio-text);
  font-size: 1.55rem;
  font-weight: 750;
  line-height: 1.25;
}

body.about-page .about-model-card > p {
  margin: 0;
  color: var(--about-copy);
  line-height: 1.7;
}

body.about-page .about-model-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

body.about-page .about-model-card li {
  position: relative;
  padding-left: 20px;
  color: var(--about-copy-strong);
  font-size: 0.88rem;
}

body.about-page .about-model-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--about-green);
  content: "";
}

body.about-page .about-model-commercial li::before {
  background: var(--about-blue);
}

body.about-page .about-model-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 28px;
  color: var(--studio-text);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

body.about-page .about-model-link:hover,
body.about-page .about-model-link:focus {
  color: var(--about-blue);
}

body.about-page .about-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--studio-line);
  border-radius: 18px;
  background: var(--studio-line);
  overflow: hidden;
}

body.about-page .about-principles-grid article {
  min-height: 235px;
  padding: 30px 28px;
  background: rgba(17, 19, 21, 0.94);
}

body.about-page .about-principles-grid article > span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--about-blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

body.about-page .about-principles-grid h3 {
  margin: 0 0 12px;
  color: var(--studio-text);
  font-size: 1.12rem;
  font-weight: 750;
}

body.about-page .about-principles-grid p {
  margin: 0;
  color: var(--about-copy);
  font-size: 0.9rem;
  line-height: 1.65;
}

body.about-page .about-final-cta {
  padding: 20px 0 108px;
}

body.about-page .about-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(138, 180, 248, 0.25);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(138, 180, 248, 0.18), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(129, 201, 149, 0.1), transparent 42%),
    linear-gradient(150deg, rgba(32, 36, 41, 0.96), rgba(16, 18, 21, 0.96));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body.about-page .about-cta-panel > div:first-child {
  max-width: 680px;
}

body.about-page .about-cta-panel > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: var(--about-copy);
  font-size: 1rem;
  line-height: 1.7;
}

body.about-page .about-cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 991.98px) {
  body.about-page .about-page-hero {
    padding: 76px 0 72px;
  }

  body.about-page .about-hero-layout,
  body.about-page .about-bridge-layout {
    grid-template-columns: 1fr;
  }

  body.about-page .about-hero-copy {
    max-width: 820px;
  }

  body.about-page .about-product-loop {
    max-width: 680px;
  }

  body.about-page .about-bridge-copy {
    position: static;
    max-width: 760px;
  }

  body.about-page .about-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.about-page .about-cta-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  body.about-page .about-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  body.about-page .about-section {
    padding: 72px 0;
  }

  body.about-page .about-problem-grid,
  body.about-page .about-model-grid {
    grid-template-columns: 1fr;
  }

  body.about-page .about-problem-grid {
    border-right: 1px solid var(--studio-line);
    border-left: 1px solid var(--studio-line);
  }

  body.about-page .about-problem-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--studio-line);
  }

  body.about-page .about-problem-card:last-child {
    border-bottom: 0;
  }

  body.about-page .about-card-index,
  body.about-page .about-model-card-top,
  body.about-page .about-principles-grid article > span {
    margin-bottom: 34px;
  }

  body.about-page .about-model-card {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  body.about-page .about-page-hero {
    padding: 56px 0 64px;
  }

  body.about-page .about-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
  }

  body.about-page .about-hero-lead {
    font-size: 1rem;
  }

  body.about-page .about-hero-actions,
  body.about-page .about-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.about-page .about-hero-actions .btn,
  body.about-page .about-cta-actions .btn {
    width: 100%;
  }

  body.about-page .about-product-loop-header {
    align-items: flex-start;
    flex-direction: column;
  }

  body.about-page .about-loop-list {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.about-page .about-loop-output {
    flex-wrap: wrap;
  }

  body.about-page .about-process-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.about-page .about-principles-grid {
    grid-template-columns: 1fr;
  }

  body.about-page .about-principles-grid article {
    min-height: 0;
  }

  body.about-page .about-final-cta {
    padding-bottom: 84px;
  }

  body.about-page .about-cta-panel {
    padding: 30px 22px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.about-page *,
  body.about-page *::before,
  body.about-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================
   MOLNEXUS COMMERCE + PUBLIC LEGAL PAGES
   ========================================== */

body.molnexus-page .molnexus-purchase {
  padding: 108px 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(139, 212, 0, 0.11), transparent 32%),
    #edf1f3 !important;
  color: var(--molnexus-ink);
}

body.molnexus-page .molnexus-purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.68fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

body.molnexus-page .molnexus-purchase-copy {
  padding-top: 18px;
}

body.molnexus-page .molnexus-purchase .commercial-kicker {
  color: #527d00;
}

body.molnexus-page .molnexus-purchase h2 {
  max-width: 720px;
  margin: 0;
  color: var(--molnexus-ink) !important;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  font-weight: 680;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

body.molnexus-page .molnexus-purchase-copy > p:last-of-type {
  max-width: 690px;
  margin: 24px 0 0;
  color: #525e69;
  font-size: 1.04rem;
  line-height: 1.72;
}

body.molnexus-page .molnexus-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

body.molnexus-page .molnexus-delivery-grid article {
  min-width: 0;
  padding: 22px 18px;
  border: 1px solid #cdd5da;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

body.molnexus-page .molnexus-delivery-grid span,
body.molnexus-page .molnexus-delivery-grid strong {
  display: block;
}

body.molnexus-page .molnexus-delivery-grid span {
  color: #68737e;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.molnexus-page .molnexus-delivery-grid strong {
  margin-top: 9px;
  color: var(--molnexus-ink);
  font-size: 0.96rem;
}

body.molnexus-page .molnexus-delivery-grid p {
  margin: 9px 0 0;
  color: #5b6670;
  font-size: 0.8rem;
  line-height: 1.55;
}

body.molnexus-page .molnexus-delivery-grid a {
  color: #3f6500;
  overflow-wrap: anywhere;
}

body.molnexus-page .molnexus-price-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid #c8d0d5;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 32px 80px rgba(22, 31, 39, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.molnexus-page .molnexus-price-card > p:first-child {
  margin: 0;
  color: #5f6a74;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.molnexus-page .molnexus-price {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
  color: var(--molnexus-ink);
}

body.molnexus-page .molnexus-price span {
  margin: 14px 5px 0 0;
  font-size: 0.92rem;
  font-weight: 850;
}

body.molnexus-page .molnexus-price strong {
  color: var(--molnexus-ink) !important;
  font-size: clamp(4.2rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.075em;
}

body.molnexus-page .molnexus-price-note {
  margin: 11px 0 0;
  color: #68737d;
  font-size: 0.86rem;
  font-weight: 700;
}

body.molnexus-page .molnexus-price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

body.molnexus-page .molnexus-price-card li {
  position: relative;
  padding-left: 25px;
  color: #3d4852;
  font-size: 0.88rem;
  line-height: 1.5;
}

body.molnexus-page .molnexus-price-card li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #e3f8ba;
  color: #315400;
  font-size: 0.67rem;
  font-weight: 900;
  content: "✓";
}

body.molnexus-page .molnexus-price-card > small {
  display: block;
  margin-top: 16px;
  color: #69737d;
  font-size: 0.7rem;
  line-height: 1.55;
  text-align: center;
}

body.molnexus-page .molnexus-price-card nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
  margin-top: 14px;
}

body.molnexus-page .molnexus-price-card nav a {
  color: #4d5c68;
  font-size: 0.69rem;
  font-weight: 750;
}

body.molnexus-page .molnexus-research-notice {
  padding: 88px 0;
  border-top: 1px solid rgba(139, 212, 0, 0.18);
  border-bottom: 1px solid rgba(139, 212, 0, 0.18);
  background: #11171e;
}

body.molnexus-page .molnexus-research-notice .container > div {
  max-width: 920px;
}

body.molnexus-page .molnexus-research-notice h2 {
  margin: 0;
  color: var(--studio-text);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 660;
  letter-spacing: -0.055em;
}

body.molnexus-page .molnexus-research-notice p:not(.commercial-kicker) {
  margin: 20px 0 0;
  color: #bec6ce;
  line-height: 1.75;
}

body.molnexus-page .molnexus-research-notice a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--molnexus-lime-soft);
  font-weight: 800;
}

body.legal-page {
  background: #10161d;
}

body.legal-page .legal-shell {
  padding: 64px 0 112px;
}

body.legal-page .legal-header {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

body.legal-page .legal-header h1 {
  margin: 0;
  color: #f4f6f8;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 670;
  letter-spacing: -0.055em;
}

body.legal-page .legal-header > p:last-child {
  margin: 15px 0 0;
  color: #9ba6b2;
}

body.legal-page .legal-document {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid #d6dde2;
  border-radius: 24px;
  background: #f9fafb;
  color: #303b45;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

body.legal-page .legal-document h2,
body.legal-page .legal-document h3 {
  color: #101820 !important;
  letter-spacing: -0.025em;
}

body.legal-page .legal-document h2 {
  margin: 42px 0 13px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

body.legal-page .legal-document h2:first-child {
  margin-top: 0;
}

body.legal-page .legal-document h3 {
  margin: 26px 0 10px;
  font-size: 1.08rem;
}

body.legal-page .legal-document p,
body.legal-page .legal-document li {
  color: #3f4b55;
  font-size: 0.98rem;
  line-height: 1.78;
}

body.legal-page .legal-document strong {
  color: #17212a;
}

body.legal-page .legal-document p {
  margin-bottom: 16px;
}

body.legal-page .legal-document li + li {
  margin-top: 8px;
}

body.legal-page .legal-document a {
  color: #3d6500;
  font-weight: 700;
  overflow-wrap: anywhere;
}

body.legal-page .legal-document code {
  color: #263d00;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  body.molnexus-page .molnexus-purchase-layout {
    grid-template-columns: 1fr;
  }

  body.molnexus-page .molnexus-price-card {
    max-width: 620px;
  }
}

@media (max-width: 767.98px) {
  body.molnexus-page .molnexus-purchase,
  body.molnexus-page .molnexus-research-notice {
    padding: 76px 0;
  }

  body.molnexus-page .molnexus-delivery-grid {
    grid-template-columns: 1fr;
  }

  body.legal-page .legal-shell {
    padding: 42px 0 76px;
  }

  body.legal-page .legal-document {
    border-radius: 18px;
  }
}

/* Smart primary navigation: visible at rest, out of the way while reading. */
body.studio-page .navbar[data-site-nav] {
  will-change: transform;
  transition:
    transform 220ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

body.studio-page .navbar[data-site-nav].is-scrolled {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(17, 19, 21, 0.9);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

body.studio-page .navbar[data-site-nav].is-hidden {
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 30px));
}

body.studio-page .navbar[data-site-nav] .nav-link[aria-current="page"] {
  color: var(--studio-text);
}

body.studio-page .navbar[data-site-nav] .nav-link[aria-current="page"]:not(.btn)::after {
  display: block;
  width: 5px;
  height: 5px;
  margin: 3px auto -8px;
  border-radius: 50%;
  background: var(--studio-accent);
  box-shadow: 0 0 9px rgba(138, 180, 248, 0.72);
  content: "";
}

/* ==========================================
   COMMERCIAL SCIENTIFIC PRODUCT CATALOG
   ========================================== */

body.commercial-page {
  --commercial-copy: #b8bdc5;
  --commercial-copy-strong: #dde1e7;
  --commercial-blue: #8ab4f8;
  --commercial-green: #81c995;
}

body.commercial-page main {
  overflow: hidden;
}

body.commercial-page .commercial-hero {
  position: relative;
  padding: 94px 0 92px;
}

body.commercial-page .commercial-hero::before {
  position: absolute;
  top: -230px;
  right: -120px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 180, 248, 0.17), transparent 68%);
  pointer-events: none;
  content: "";
}

body.commercial-page .commercial-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--studio-line-strong), transparent);
  content: "";
}

body.commercial-page .commercial-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.88fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: center;
}

body.commercial-page .commercial-hero-copy {
  max-width: 760px;
}

body.commercial-page .commercial-hero-copy h1 {
  margin: 0;
  color: var(--studio-text);
  font-size: clamp(3.25rem, 5.25vw, 5.1rem);
  font-weight: 650;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

body.commercial-page .commercial-hero-copy > p:last-of-type {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--commercial-copy);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

body.commercial-page .commercial-hero-actions,
body.commercial-page .commercial-current-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

body.commercial-page .commercial-hero-actions .btn,
body.commercial-page .commercial-current-actions .btn {
  min-height: 50px;
  padding: 0 22px !important;
  border-radius: 13px !important;
  font-size: 0.95rem;
  font-weight: 800;
}

body.commercial-page .btn-outline-primary {
  border-color: var(--studio-line-strong) !important;
  background: rgba(255, 255, 255, 0.035) !important;
  color: var(--studio-text) !important;
}

body.commercial-page .btn-outline-primary:hover,
body.commercial-page .btn-outline-primary:focus {
  border-color: rgba(138, 180, 248, 0.48) !important;
  background: rgba(138, 180, 248, 0.1) !important;
}

body.commercial-page .commercial-standard-card {
  border: 1px solid rgba(138, 180, 248, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(138, 180, 248, 0.15), transparent 36%),
    linear-gradient(155deg, rgba(29, 32, 36, 0.95), rgba(14, 16, 18, 0.96));
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

body.commercial-page .commercial-standard-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 21px;
  border-bottom: 1px solid var(--studio-line);
  color: var(--commercial-copy-strong);
  font-size: 0.76rem;
  font-weight: 800;
}

body.commercial-page .commercial-standard-header span:last-child {
  color: var(--commercial-blue);
}

body.commercial-page .commercial-standard-card ul {
  display: grid;
  margin: 0;
  padding: 12px 21px;
  list-style: none;
}

body.commercial-page .commercial-standard-card li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--studio-line);
}

body.commercial-page .commercial-standard-card li:last-child {
  border-bottom: 0;
}

body.commercial-page .commercial-standard-card li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(138, 180, 248, 0.24);
  border-radius: 10px;
  background: rgba(138, 180, 248, 0.07);
  color: var(--commercial-blue);
  font-size: 0.7rem;
  font-weight: 850;
}

body.commercial-page .commercial-standard-card strong,
body.commercial-page .commercial-standard-card small {
  display: block;
}

body.commercial-page .commercial-standard-card strong {
  margin-bottom: 5px;
  color: var(--studio-text);
  font-size: 0.94rem;
}

body.commercial-page .commercial-standard-card small {
  color: var(--commercial-copy);
  font-size: 0.81rem;
  line-height: 1.55;
}

body.commercial-page .commercial-standard-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  border-top: 1px solid var(--studio-line);
  background: rgba(0, 0, 0, 0.2);
  color: var(--commercial-green);
  font-size: 0.76rem;
  font-weight: 750;
}

body.commercial-page .commercial-standard-footer span {
  color: var(--studio-quiet);
}

body.commercial-page .commercial-catalog-section {
  padding: 96px 0;
}

body.commercial-page .commercial-catalog-section {
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 50% 0%, rgba(138, 180, 248, 0.07), transparent 38%),
    rgba(0, 0, 0, 0.12);
}

body.commercial-page .commercial-section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

body.commercial-page .commercial-kicker {
  margin: 0 0 14px;
  color: var(--commercial-blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.commercial-page .commercial-section-heading h2,
body.commercial-page .commercial-current-panel h2 {
  margin: 0;
  color: var(--studio-text);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body.commercial-page .commercial-section-heading > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--commercial-copy);
  font-size: 1.02rem;
  line-height: 1.7;
}

body.commercial-page .commercial-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.commercial-page .commercial-product-grid-single {
  grid-template-columns: minmax(0, 760px);
}

body.commercial-page .commercial-product-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  border: 1px solid var(--studio-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(138, 180, 248, 0.11), transparent 34%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

body.commercial-page .commercial-product-preview {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8.4;
  border-bottom: 1px solid var(--studio-line);
  background: #0d1118;
  overflow: hidden;
}

body.commercial-page .commercial-product-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

body.commercial-page .commercial-product-preview:hover img,
body.commercial-page .commercial-product-preview:focus img {
  transform: scale(1.018);
}

body.commercial-page .commercial-product-preview > span {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(141, 216, 0, 0.34);
  border-radius: 999px;
  background: rgba(8, 12, 17, 0.84);
  color: #afea45;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

body.commercial-page .commercial-product-card-body {
  display: flex;
  min-height: 280px;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

body.commercial-page .commercial-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--commercial-blue);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.commercial-page .commercial-product-card h3 {
  margin: 0 0 14px;
  color: var(--studio-text);
  font-size: 1.45rem;
  font-weight: 750;
}

body.commercial-page .commercial-product-card-body > p {
  margin: 0;
  color: var(--commercial-copy);
  line-height: 1.7;
}

body.commercial-page .commercial-product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--studio-text);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

body.commercial-page .commercial-product-link:hover,
body.commercial-page .commercial-product-link:focus {
  color: var(--commercial-blue);
}

body.commercial-page .commercial-empty-state {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(138, 180, 248, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 50%, rgba(138, 180, 248, 0.1), transparent 30%),
    linear-gradient(150deg, rgba(29, 32, 36, 0.94), rgba(15, 17, 19, 0.94));
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body.commercial-page .commercial-empty-mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(138, 180, 248, 0.22);
  border-radius: 20px;
  background: rgba(138, 180, 248, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.commercial-page .commercial-empty-mark span {
  grid-area: 1 / 1;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--commercial-blue);
  box-shadow: 0 0 12px rgba(138, 180, 248, 0.45);
}

body.commercial-page .commercial-empty-mark span:first-child {
  transform: rotate(60deg);
}

body.commercial-page .commercial-empty-mark span:nth-child(2) {
  transform: rotate(-60deg);
}

body.commercial-page .commercial-release-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--commercial-green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.commercial-page .commercial-empty-copy h3 {
  margin: 0 0 10px;
  color: var(--studio-text);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 750;
}

body.commercial-page .commercial-empty-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--commercial-copy);
  line-height: 1.68;
}

body.commercial-page .commercial-empty-state > .btn {
  min-height: 46px;
  padding: 0 18px !important;
  border-radius: 12px !important;
  white-space: nowrap;
}

body.commercial-page .commercial-current-platform {
  padding: 96px 0 112px;
}

body.commercial-page .commercial-current-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: end;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(138, 180, 248, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(138, 180, 248, 0.18), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(129, 201, 149, 0.1), transparent 42%),
    linear-gradient(150deg, rgba(32, 36, 41, 0.96), rgba(16, 18, 21, 0.96));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body.commercial-page .commercial-current-panel > div:first-child {
  max-width: 700px;
}

body.commercial-page .commercial-current-panel > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: var(--commercial-copy);
  line-height: 1.7;
}

body.commercial-page .commercial-current-actions {
  justify-content: flex-end;
  margin-top: 0;
}

/* ==========================================
   MOLNEXUS PRODUCT PAGE
   ========================================== */

body.molnexus-page {
  --molnexus-lime: #8bd400;
  --molnexus-lime-soft: #afea45;
  --molnexus-ink: #10141a;
  --molnexus-ink-soft: #18202a;
  --molnexus-light: #f3f6f8;
  --molnexus-light-copy: #4f5965;
}

body.molnexus-page .btn-primary:not(.nav-link) {
  border-color: #9ce619 !important;
  background: linear-gradient(180deg, #9ce619, #79bd00) !important;
  color: #0c1502 !important;
  box-shadow: 0 14px 32px rgba(139, 212, 0, 0.2);
}

body.molnexus-page .molnexus-purchase-disabled {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid #c4ccd2;
  border-radius: 12px;
  background: #e4e9ec;
  box-shadow: none;
  color: #48535d;
  cursor: not-allowed;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  user-select: none;
}

body.molnexus-page .molnexus-breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
  color: var(--studio-quiet);
  font-size: 0.8rem;
  font-weight: 700;
}

body.molnexus-page .molnexus-breadcrumbs a {
  color: var(--commercial-copy);
  text-decoration: none;
}

body.molnexus-page .molnexus-breadcrumbs a:hover,
body.molnexus-page .molnexus-breadcrumbs a:focus {
  color: var(--molnexus-lime-soft);
}

body.molnexus-page .molnexus-hero {
  position: relative;
  padding: 34px 0 102px;
}

body.molnexus-page .molnexus-hero::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 212, 0, 0.13), transparent 66%);
  pointer-events: none;
  content: "";
}

body.molnexus-page .molnexus-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 212, 0, 0.25),
    transparent
  );
  content: "";
}

body.molnexus-page .molnexus-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(410px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(40px, 4.5vw, 66px);
  align-items: center;
}

body.molnexus-page .molnexus-hero-copy {
  max-width: 620px;
}

body.molnexus-page .molnexus-product-line {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 24px;
}

body.molnexus-page .molnexus-product-line strong,
body.molnexus-page .molnexus-product-line small {
  display: block;
}

body.molnexus-page .molnexus-product-line strong {
  color: var(--studio-text);
  font-size: 1.02rem;
  font-weight: 800;
}

body.molnexus-page .molnexus-product-line small {
  margin-top: 2px;
  color: var(--studio-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.molnexus-page .molnexus-product-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(139, 212, 0, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(circle, rgba(139, 212, 0, 0.2), transparent 62%),
    rgba(8, 12, 17, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.molnexus-page .molnexus-product-mark::before,
body.molnexus-page .molnexus-product-mark::after,
body.molnexus-page .molnexus-product-mark span {
  position: absolute;
  border-radius: 50%;
  content: "";
}

body.molnexus-page .molnexus-product-mark::before {
  width: 18px;
  height: 18px;
  border: 2px solid var(--molnexus-lime);
}

body.molnexus-page .molnexus-product-mark::after {
  width: 5px;
  height: 5px;
  background: var(--molnexus-lime);
  box-shadow: 0 0 10px rgba(139, 212, 0, 0.75);
}

body.molnexus-page .molnexus-product-mark span {
  width: 28px;
  height: 1px;
  background: rgba(139, 212, 0, 0.62);
}

body.molnexus-page .molnexus-hero-copy .commercial-kicker {
  color: var(--molnexus-lime-soft);
}

body.molnexus-page .molnexus-hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--studio-text);
  font-size: clamp(2.9rem, 3.9vw, 3.9rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.055em;
}

body.molnexus-page .molnexus-hero-lead {
  margin: 22px 0 0;
  color: #c3c9d1;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}

body.molnexus-page .molnexus-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

body.molnexus-page .molnexus-badges li {
  padding: 7px 10px;
  border: 1px solid var(--studio-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #b9c0c9;
  font-size: 0.7rem;
  font-weight: 750;
}

body.molnexus-page .molnexus-hero-actions,
body.molnexus-page .molnexus-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

body.molnexus-page .molnexus-hero-actions .btn,
body.molnexus-page .molnexus-final-actions .btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px !important;
  border-radius: 12px !important;
  font-size: 0.9rem;
  font-weight: 850;
}

body.molnexus-page .molnexus-launch-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  border: 1px solid #a9c8ff;
  border-radius: 12px;
  background: linear-gradient(180deg, #a9c9ff 0%, #7faaf5 100%);
  box-shadow:
    0 14px 32px rgba(79, 130, 220, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  color: #101b31;
  cursor: not-allowed;
  line-height: 1.2;
  text-align: center;
  user-select: none;
}

body.molnexus-page .molnexus-launch-button-title {
  font-size: 0.9rem;
  font-weight: 850;
}

body.molnexus-page .molnexus-launch-button-copy {
  padding-left: 11px;
  border-left: 1px solid rgba(16, 27, 49, 0.24);
  color: #243b65;
  font-size: 0.72rem;
  font-weight: 750;
}

body.molnexus-page .molnexus-release-note {
  margin: 14px 0 0;
  color: var(--studio-quiet);
  font-size: 0.76rem;
  line-height: 1.5;
}

body.molnexus-page .molnexus-hero-visual,
body.molnexus-page .molnexus-result-figure,
body.molnexus-page .molnexus-preparation-figure {
  margin: 0;
}

body.molnexus-page .molnexus-hero-visual {
  border: 1px solid rgba(139, 212, 0, 0.24);
  border-radius: 18px;
  background: #0b0f15;
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

body.molnexus-page .molnexus-window-chrome {
  display: flex;
  min-height: 40px;
  gap: 7px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #161b23;
}

body.molnexus-page .molnexus-window-chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66707d;
}

body.molnexus-page .molnexus-window-chrome > span:first-child {
  background: #8bd400;
}

body.molnexus-page .molnexus-window-chrome strong {
  margin-left: auto;
  color: #9099a6;
  font-size: 0.67rem;
  font-weight: 700;
}

body.molnexus-page .molnexus-hero-visual img,
body.molnexus-page .molnexus-result-figure img {
  display: block;
  width: 100%;
  height: auto;
}

body.molnexus-page .molnexus-hero-visual figcaption {
  padding: 13px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #8f98a5;
  font-size: 0.72rem;
  line-height: 1.5;
}

body.molnexus-page .molnexus-workflow,
body.molnexus-page .molnexus-capabilities {
  padding: 104px 0;
}

body.molnexus-page .molnexus-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--studio-line);
  border-radius: 20px;
  background: var(--studio-line);
  list-style: none;
  overflow: hidden;
}

body.molnexus-page .molnexus-workflow-grid li {
  min-height: 310px;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 212, 0, 0.07), transparent 34%),
    rgba(16, 19, 23, 0.97);
}

body.molnexus-page .molnexus-workflow-grid li > span {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--molnexus-lime-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

body.molnexus-page .molnexus-workflow-grid h3,
body.molnexus-page .molnexus-capability-grid h3 {
  margin: 0 0 12px;
  color: var(--studio-text);
  font-size: 1.15rem;
  font-weight: 750;
}

body.molnexus-page .molnexus-workflow-grid p,
body.molnexus-page .molnexus-capability-grid p {
  margin: 0;
  color: var(--commercial-copy);
  font-size: 0.9rem;
  line-height: 1.68;
}

body.molnexus-page .molnexus-product-tour,
body.molnexus-page .molnexus-specifications {
  background: var(--molnexus-light) !important;
  color: var(--molnexus-ink);
}

body.molnexus-page .molnexus-product-tour {
  scroll-margin-top: 34px;
  padding: 112px 0;
}

body.molnexus-page .molnexus-product-tour .commercial-kicker,
body.molnexus-page .molnexus-specifications .commercial-kicker {
  color: #568600;
}

body.molnexus-page .molnexus-product-tour .commercial-section-heading h2,
body.molnexus-page .molnexus-product-tour .commercial-section-heading > p:last-child,
body.molnexus-page .molnexus-specifications h2,
body.molnexus-page .molnexus-specifications-layout > div > p:last-child {
  color: var(--molnexus-ink) !important;
}

body.molnexus-page .molnexus-product-tour .commercial-section-heading > p:last-child,
body.molnexus-page .molnexus-specifications-layout > div > p:last-child {
  color: var(--molnexus-light-copy);
}

body.molnexus-page .molnexus-tour-context {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 44px;
  padding: 22px 24px;
  border: 1px solid #ccd3d9;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

body.molnexus-page .molnexus-tour-context > span {
  padding: 8px 11px;
  border: 1px solid rgba(86, 134, 0, 0.32);
  border-radius: 999px;
  background: rgba(139, 212, 0, 0.1);
  color: #466d00;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.molnexus-page .molnexus-tour-context p {
  margin: 0;
  color: #3f4954;
  font-size: 0.9rem;
  line-height: 1.68;
}

body.molnexus-page .molnexus-tour-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 20px 0 0;
  padding: 1px;
  border-radius: 18px;
  background: #cbd2d8;
  overflow: hidden;
}

body.molnexus-page .molnexus-tour-metrics > div {
  min-height: 150px;
  padding: 23px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 212, 0, 0.1), transparent 43%),
    #ffffff;
}

body.molnexus-page .molnexus-tour-metrics dt {
  margin-bottom: 24px;
  color: #697480;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.molnexus-page .molnexus-tour-metrics dd,
body.molnexus-page .molnexus-tour-metrics dd strong,
body.molnexus-page .molnexus-tour-metrics dd span {
  display: block;
}

body.molnexus-page .molnexus-tour-metrics dd {
  margin: 0;
}

body.molnexus-page .molnexus-tour-metrics dd strong {
  color: var(--molnexus-ink);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.035em;
}

body.molnexus-page .molnexus-tour-metrics dd span {
  margin-top: 8px;
  color: #626d78;
  font-size: 0.75rem;
  line-height: 1.45;
}

body.molnexus-page .molnexus-tour-rail {
  position: sticky;
  z-index: 5;
  top: 78px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  padding: 1px;
  border-radius: 14px;
  background: #cbd2d8;
  box-shadow: 0 14px 36px rgba(23, 32, 43, 0.12);
  overflow: hidden;
}

body.molnexus-page .molnexus-tour-rail a {
  display: flex;
  min-height: 52px;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.97);
  color: #37414b;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

body.molnexus-page .molnexus-tour-rail a:hover,
body.molnexus-page .molnexus-tour-rail a:focus {
  background: #f8ffe9;
  color: #3e6200;
}

body.molnexus-page .molnexus-tour-rail a span {
  color: #689f00;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
}

body.molnexus-page .molnexus-tour-chapter {
  scroll-margin-top: 152px;
  margin-top: 104px;
}

body.molnexus-page .molnexus-tour-chapter-heading {
  display: grid;
  grid-template-columns: 70px minmax(0, 760px);
  gap: 26px;
  align-items: start;
  margin-bottom: 38px;
}

body.molnexus-page .molnexus-tour-chapter-heading > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(86, 134, 0, 0.35);
  border-radius: 16px;
  background: rgba(139, 212, 0, 0.1);
  color: #4f7b00;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.molnexus-page .molnexus-tour-chapter-heading .commercial-kicker {
  margin: 0 0 11px;
}

body.molnexus-page .molnexus-tour-chapter-heading h3 {
  margin: 0;
  color: var(--molnexus-ink) !important;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.042em;
}

body.molnexus-page .molnexus-tour-chapter-heading div > p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--molnexus-light-copy);
  font-size: 0.98rem;
  line-height: 1.72;
}

body.molnexus-page .molnexus-tour-screen {
  margin: 0;
  border: 1px solid #c6cdd4;
  border-radius: 20px;
  background: #0b0f15;
  box-shadow:
    0 30px 80px rgba(23, 32, 43, 0.17),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

body.molnexus-page .molnexus-tour-screen img {
  display: block;
  width: 100%;
  height: auto;
}

body.molnexus-page .molnexus-tour-screen figcaption {
  padding: 18px 22px 20px;
  border-top: 1px solid #dfe4e8;
  background: #ffffff;
  color: var(--molnexus-light-copy);
  font-size: 0.82rem;
  line-height: 1.62;
}

body.molnexus-page .molnexus-tour-screen figcaption strong {
  color: var(--molnexus-ink);
}

body.molnexus-page .molnexus-preparation-gallery {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.6fr);
  gap: 24px;
  align-items: end;
}

body.molnexus-page .molnexus-preparation-gallery .molnexus-preparation-figure {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

body.molnexus-page .molnexus-tour-screen-compact {
  align-self: end;
}

body.molnexus-page .molnexus-tour-chapter-split {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

body.molnexus-page .molnexus-tour-chapter-split .molnexus-tour-chapter-heading {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

body.molnexus-page .molnexus-tour-chapter-split .molnexus-tour-chapter-heading > span {
  width: 52px;
  height: 52px;
}

body.molnexus-page .molnexus-tour-chapter-split .molnexus-tour-chapter-heading h3 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

body.molnexus-page .molnexus-tour-points {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

body.molnexus-page .molnexus-tour-points li {
  position: relative;
  padding-left: 22px;
  color: #37414b;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
}

body.molnexus-page .molnexus-tour-points li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid #6da700;
  border-radius: 50%;
  content: "";
}

body.molnexus-page .molnexus-tour-screen-results {
  border-color: rgba(86, 134, 0, 0.38);
  box-shadow:
    0 34px 88px rgba(23, 32, 43, 0.2),
    0 0 0 4px rgba(139, 212, 0, 0.07);
}

body.molnexus-page .molnexus-tour-screen-history img {
  background: #0b0f15;
}

body.molnexus-page .molnexus-tour-disclaimer {
  margin: 78px 0 0;
  padding: 22px 24px;
  border-left: 4px solid #7fbd0d;
  border-radius: 0 12px 12px 0;
  background: #e8edf0;
  color: #4b5661;
  font-size: 0.82rem;
  line-height: 1.68;
}

body.molnexus-page .molnexus-tour-disclaimer strong {
  color: var(--molnexus-ink);
}

body.molnexus-page .molnexus-result-figure {
  border: 1px solid #cbd2d9;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(23, 32, 43, 0.16);
  overflow: hidden;
}

body.molnexus-page .molnexus-result-figure figcaption {
  padding: 20px 24px 22px;
  border-top: 1px solid #dfe4e8;
  color: var(--molnexus-light-copy);
  font-size: 0.86rem;
  line-height: 1.65;
}

body.molnexus-page .molnexus-result-figure figcaption strong {
  color: var(--molnexus-ink);
}

body.molnexus-page .molnexus-preparation-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
  margin-top: 94px;
}

body.molnexus-page .molnexus-preparation-figure {
  justify-self: center;
  max-width: 500px;
  padding: 18px;
  border: 1px solid #ccd3d9;
  border-radius: 22px;
  background: #11161e;
  box-shadow: 0 30px 72px rgba(24, 33, 44, 0.18);
}

body.molnexus-page .molnexus-preparation-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

body.molnexus-page .molnexus-preparation-figure figcaption {
  padding: 15px 4px 0;
  color: #9ca5b1;
  font-size: 0.74rem;
  text-align: center;
}

body.molnexus-page .molnexus-preparation-copy {
  max-width: 650px;
}

body.molnexus-page .molnexus-preparation-copy h2,
body.molnexus-page .molnexus-specifications h2,
body.molnexus-page .molnexus-final-panel h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  font-weight: 650;
  line-height: 1.07;
  letter-spacing: -0.045em;
}

body.molnexus-page .molnexus-preparation-copy h2 {
  color: var(--molnexus-ink) !important;
}

body.molnexus-page .molnexus-preparation-copy > p:not(.commercial-kicker) {
  margin: 22px 0 0;
  color: var(--molnexus-light-copy);
  font-size: 1.02rem;
  line-height: 1.72;
}

body.molnexus-page .molnexus-preparation-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

body.molnexus-page .molnexus-preparation-copy li {
  position: relative;
  padding-left: 28px;
  color: #303944;
  font-weight: 650;
  line-height: 1.55;
}

body.molnexus-page .molnexus-preparation-copy li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #6da700;
  border-radius: 50%;
  content: "";
}

body.molnexus-page .molnexus-capabilities {
  border-top: 1px solid var(--studio-line);
  border-bottom: 1px solid var(--studio-line);
}

body.molnexus-page .molnexus-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.molnexus-page .molnexus-capability-grid article {
  min-height: 240px;
  padding: 32px;
  border: 1px solid var(--studio-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 212, 0, 0.09), transparent 33%),
    rgba(255, 255, 255, 0.035);
}

body.molnexus-page .molnexus-capability-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 46px;
  border: 1px solid rgba(139, 212, 0, 0.28);
  border-radius: 12px;
  background: rgba(139, 212, 0, 0.07);
  color: var(--molnexus-lime-soft);
  font-size: 0.72rem;
  font-weight: 850;
}

body.molnexus-page .molnexus-specifications {
  padding: 112px 0;
}

body.molnexus-page .molnexus-specifications-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 128px);
  align-items: start;
}

body.molnexus-page .molnexus-specifications-layout > div {
  position: sticky;
  top: 112px;
}

body.molnexus-page .molnexus-specifications-layout > div > p:last-child {
  max-width: 470px;
  margin: 22px 0 0;
  line-height: 1.7;
}

body.molnexus-page .molnexus-specification-list {
  margin: 0;
  border-top: 1px solid #cbd2d8;
}

body.molnexus-page .molnexus-specification-list > div {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
  gap: 26px;
  padding: 21px 0;
  border-bottom: 1px solid #cbd2d8;
}

body.molnexus-page .molnexus-specification-list dt {
  color: #66717d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.molnexus-page .molnexus-specification-list dd {
  margin: 0;
  color: var(--molnexus-ink);
  font-weight: 650;
  line-height: 1.55;
}

body.molnexus-page .molnexus-final-cta {
  padding: 108px 0 120px;
}

body.molnexus-page .molnexus-final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 58px;
  align-items: end;
  padding: clamp(36px, 5vw, 60px);
  border: 1px solid rgba(139, 212, 0, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 212, 0, 0.14), transparent 38%),
    linear-gradient(150deg, rgba(29, 35, 43, 0.98), rgba(13, 17, 22, 0.98));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body.molnexus-page .molnexus-final-panel > div:first-child {
  max-width: 720px;
}

body.molnexus-page .molnexus-final-panel h2 {
  color: var(--studio-text);
}

body.molnexus-page .molnexus-final-panel > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: var(--commercial-copy);
  line-height: 1.7;
}

body.molnexus-page .molnexus-final-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 1199.98px) {
  body.studio-page .navbar[data-site-nav] .nav-link {
    padding-right: 0.42rem;
    padding-left: 0.42rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 991.98px) {
  body.studio-page .navbar[data-site-nav] .nav-link[aria-current="page"]:not(.btn)::after {
    display: none;
  }

  body.commercial-page .commercial-hero {
    padding: 76px 0 76px;
  }

  body.commercial-page .commercial-hero-layout {
    grid-template-columns: 1fr;
  }

  body.commercial-page .commercial-hero-copy {
    max-width: 820px;
  }

  body.commercial-page .commercial-standard-card {
    max-width: 680px;
  }

  body.commercial-page .commercial-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.commercial-page .commercial-product-grid-single {
    grid-template-columns: minmax(0, 760px);
  }

  body.commercial-page .commercial-empty-state,
  body.commercial-page .commercial-current-panel {
    grid-template-columns: 1fr;
  }

  body.commercial-page .commercial-empty-mark {
    width: 68px;
    height: 68px;
  }

  body.commercial-page .commercial-empty-state > .btn {
    justify-self: start;
  }

  body.commercial-page .commercial-current-actions {
    justify-content: flex-start;
  }

  body.molnexus-page .molnexus-hero {
    padding-bottom: 88px;
  }

  body.molnexus-page .molnexus-hero-layout {
    grid-template-columns: 1fr;
  }

  body.molnexus-page .molnexus-hero-copy {
    max-width: 780px;
  }

  body.molnexus-page .molnexus-hero-visual {
    max-width: 920px;
  }

  body.molnexus-page .molnexus-workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.molnexus-page .molnexus-workflow-grid li {
    min-height: 270px;
  }

  body.molnexus-page .molnexus-preparation-layout,
  body.molnexus-page .molnexus-specifications-layout,
  body.molnexus-page .molnexus-final-panel {
    grid-template-columns: 1fr;
  }

  body.molnexus-page .molnexus-tour-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.molnexus-page .molnexus-preparation-gallery,
  body.molnexus-page .molnexus-tour-chapter-split {
    grid-template-columns: 1fr;
  }

  body.molnexus-page .molnexus-preparation-gallery {
    gap: 34px;
  }

  body.molnexus-page .molnexus-preparation-gallery .molnexus-preparation-figure {
    width: min(100%, 520px);
    justify-self: start;
  }

  body.molnexus-page .molnexus-tour-chapter-split {
    gap: 38px;
  }

  body.molnexus-page .molnexus-tour-chapter-split .molnexus-tour-chapter-heading {
    grid-template-columns: 70px minmax(0, 760px);
    gap: 26px;
  }

  body.molnexus-page .molnexus-tour-chapter-split .molnexus-tour-chapter-heading > span {
    width: 58px;
    height: 58px;
  }

  body.molnexus-page .molnexus-preparation-figure {
    width: min(100%, 500px);
    justify-self: start;
  }

  body.molnexus-page .molnexus-specifications-layout > div {
    position: static;
  }

  body.molnexus-page .molnexus-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  body.commercial-page .commercial-catalog-section {
    padding: 74px 0;
  }

  body.commercial-page .commercial-product-grid {
    grid-template-columns: 1fr;
  }

  body.molnexus-page .molnexus-workflow,
  body.molnexus-page .molnexus-capabilities,
  body.molnexus-page .molnexus-product-tour,
  body.molnexus-page .molnexus-specifications {
    padding: 80px 0;
  }

  body.molnexus-page .molnexus-workflow-grid,
  body.molnexus-page .molnexus-capability-grid {
    grid-template-columns: 1fr;
  }

  body.molnexus-page .molnexus-workflow-grid li,
  body.molnexus-page .molnexus-capability-grid article {
    min-height: 0;
  }

  body.molnexus-page .molnexus-workflow-grid li > span,
  body.molnexus-page .molnexus-capability-grid article > span {
    margin-bottom: 34px;
  }

  body.molnexus-page .molnexus-tour-context {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.molnexus-page .molnexus-tour-context > span {
    justify-self: start;
  }

  body.molnexus-page .molnexus-tour-rail {
    position: static;
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  body.molnexus-page .molnexus-tour-rail a {
    min-width: 150px;
    flex: 1 0 auto;
  }

  body.molnexus-page .molnexus-tour-chapter {
    scroll-margin-top: 92px;
    margin-top: 80px;
  }

  body.molnexus-page .molnexus-tour-chapter-heading,
  body.molnexus-page .molnexus-tour-chapter-split .molnexus-tour-chapter-heading {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
  }

  body.molnexus-page .molnexus-preparation-layout {
    gap: 54px;
    margin-top: 68px;
  }

  body.molnexus-page .molnexus-specification-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  body.molnexus-page .molnexus-final-cta {
    padding: 80px 0 92px;
  }
}

@media (max-width: 575.98px) {
  body.commercial-page .commercial-hero {
    padding: 56px 0 66px;
  }

  body.commercial-page .commercial-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
  }

  body.commercial-page .commercial-hero-copy > p:last-of-type {
    font-size: 1rem;
  }

  body.commercial-page .commercial-hero-actions,
  body.commercial-page .commercial-current-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.commercial-page .commercial-hero-actions .btn,
  body.commercial-page .commercial-current-actions .btn {
    width: 100%;
  }

  body.commercial-page .commercial-standard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  body.commercial-page .commercial-empty-state {
    gap: 22px;
    padding: 26px 22px;
  }

  body.commercial-page .commercial-empty-state > .btn {
    width: 100%;
  }

  body.commercial-page .commercial-current-platform {
    padding: 74px 0 88px;
  }

  body.commercial-page .commercial-current-panel {
    padding: 30px 22px;
    border-radius: 20px;
  }

  body.commercial-page .commercial-product-card-body {
    min-height: 260px;
    padding: 25px 22px;
  }

  body.molnexus-page .molnexus-breadcrumbs {
    margin-bottom: 38px;
  }

  body.molnexus-page .molnexus-hero {
    padding: 28px 0 70px;
  }

  body.molnexus-page .molnexus-hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.6rem);
  }

  body.molnexus-page .molnexus-hero-actions,
  body.molnexus-page .molnexus-final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.molnexus-page .molnexus-hero-actions .btn,
  body.molnexus-page .molnexus-final-actions .btn {
    width: 100%;
  }

  body.molnexus-page .molnexus-launch-button {
    width: 100%;
    justify-content: center;
  }

  body.molnexus-page .molnexus-window-chrome strong {
    display: none;
  }

  body.molnexus-page .molnexus-hero-visual {
    border-radius: 14px;
  }

  body.molnexus-page .molnexus-tour-metrics {
    grid-template-columns: 1fr;
  }

  body.molnexus-page .molnexus-tour-metrics > div {
    min-height: 126px;
  }

  body.molnexus-page .molnexus-tour-chapter-heading,
  body.molnexus-page .molnexus-tour-chapter-split .molnexus-tour-chapter-heading {
    grid-template-columns: 1fr;
  }

  body.molnexus-page .molnexus-tour-chapter-heading > span,
  body.molnexus-page .molnexus-tour-chapter-split .molnexus-tour-chapter-heading > span {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  body.molnexus-page .molnexus-tour-screen {
    border-radius: 14px;
  }

  body.molnexus-page .molnexus-tour-screen figcaption {
    padding: 16px;
  }

  body.molnexus-page .molnexus-tour-context,
  body.molnexus-page .molnexus-tour-disclaimer {
    padding: 19px;
  }

  body.molnexus-page .molnexus-result-figure figcaption {
    padding: 18px;
  }

  body.molnexus-page .molnexus-preparation-figure {
    padding: 12px;
  }

  body.molnexus-page .molnexus-final-panel {
    gap: 34px;
    padding: 30px 22px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.studio-page .navbar[data-site-nav] {
    transition: none;
  }

  body.commercial-page *,
  body.commercial-page *::before,
  body.commercial-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
