/* Product polish layer: shared visual language across public pages and admin. */
:root {
  --tl-ink: #101828;
  --tl-muted: #667085;
  --tl-primary: #153e75;
  --tl-primary-2: #2563b8;
  --tl-teal: #17a89b;
  --tl-gold: #f5b947;
  --tl-orange: #f97316;
  --tl-line: rgba(16, 24, 40, 0.1);
  --tl-paper: rgba(255, 255, 255, 0.88);
  --tl-shadow-sm: 0 10px 28px rgba(16, 24, 40, 0.08);
  --tl-shadow: 0 22px 60px rgba(16, 24, 40, 0.12);
}

::selection {
  color: #fff;
  background: var(--tl-primary-2);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 12%, rgba(23, 168, 155, 0.13), transparent 28rem),
    radial-gradient(circle at 92% 6%, rgba(245, 185, 71, 0.14), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, #f5f7fb 45%, #ffffff 100%) !important;
  text-rendering: geometricPrecision;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1080;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--tl-teal), var(--tl-gold), var(--tl-primary-2));
  box-shadow: 0 0 18px rgba(23, 168, 155, 0.35);
  pointer-events: none;
  transition: transform 0.08s linear;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 8998;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--tl-primary), var(--tl-teal));
  box-shadow: 0 16px 38px rgba(21, 62, 117, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.site-navbar {
  width: 100%;
  min-height: 76px;
  transition:
    width 0.28s ease,
    min-height 0.28s ease,
    margin 0.28s ease,
    transform 0.28s ease,
    border-radius 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
  will-change: width, transform, border-radius;
}

.site-navbar .container,
.site-navbar .brand-wide,
.site-navbar .nav-link,
.site-navbar .btn {
  transition:
    max-width 0.28s ease,
    height 0.28s ease,
    width 0.28s ease,
    padding 0.28s ease,
    font-size 0.28s ease;
}

.site-navbar .container {
  min-height: 84px;
}

.site-navbar.is-compact {
  position: fixed;
  left: 50%;
  top: 10px;
  width: min(1080px, calc(100% - 32px));
  min-height: 58px;
  margin: 0;
  transform: translateX(-50%);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.18);
}

.site-navbar.is-compact .container {
  min-height: 64px;
  max-width: 1020px;
}

.site-navbar.is-compact .brand-wide {
  height: 58px;
  width: 174px;
}

.site-navbar.is-compact .navbar-nav {
  gap: 2px !important;
}

.site-navbar.is-compact .nav-link {
  font-size: 13px;
  padding: 6px 8px !important;
}

.site-navbar.is-compact .btn {
  font-size: 13px;
  padding: 7px 12px !important;
  border-radius: 999px;
}

.site-navbar.is-compact .badge-member {
  padding: 2px 8px;
}

.site-navbar.is-compact .navbar-toggler {
  padding: 5px 8px;
}

.brand-mark {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.navbar-brand:hover .brand-mark {
  transform: rotate(-5deg) scale(1.04);
}

.nav-link,
.btn,
.copy-btn,
button {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-link.is-active {
  position: relative;
  color: var(--tl-primary) !important;
  background: #eef4ff;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%);
  display: block;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tl-teal), var(--tl-gold));
}

.btn:hover,
.copy-btn:hover {
  transform: translateY(-1px);
}

.btn-primary-custom,
.btn-accent {
  box-shadow: 0 12px 26px rgba(21, 62, 117, 0.18);
}

.btn-primary-custom:hover,
.btn-accent:hover {
  box-shadow: 0 16px 34px rgba(21, 62, 117, 0.24);
}

.surface-card,
.soft-card,
.card,
.start-panel,
.cta-band,
.payment-card,
.pay-panel,
.confirm-card,
.auth-card,
.auth-story,
.auth-aside {
  border-radius: 10px !important;
}

.surface-card,
.soft-card,
.card,
.start-panel,
.cta-band,
.auth-card {
  box-shadow: var(--tl-shadow-sm) !important;
}

.surface-card:hover,
.soft-card:hover,
.science-card:hover,
.card-hover:hover {
  box-shadow: var(--tl-shadow) !important;
}

.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(
      260px circle at var(--spot-x, 50%) var(--spot-y, 50%),
      rgba(47, 183, 163, 0.18),
      rgba(245, 185, 71, 0.09) 36%,
      transparent 64%
    );
  transition: opacity 0.22s ease;
}

.spotlight-card:hover::after {
  opacity: 1;
}

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

.form-control,
.form-select {
  border-color: #d7deea;
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--tl-primary-2);
  box-shadow: 0 0 0 4px rgba(37, 99, 184, 0.12);
}

.flash-container .alert {
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  backdrop-filter: blur(14px);
}

.pill,
.eyebrow,
.auth-kicker {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.ce-hero {
  isolation: isolate;
}

.ce-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 20%, rgba(23, 168, 155, 0.22), transparent 20rem),
    linear-gradient(180deg, transparent 65%, rgba(255, 255, 255, 0.08));
  z-index: 0;
}

.hero-title,
.section-heading,
.auth-story h1,
.auth-aside h2 {
  text-wrap: balance;
}

.logo-stage {
  border-radius: 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.match-card {
  backdrop-filter: blur(12px);
}

.science-card,
.path-item,
.auth-point {
  position: relative;
  overflow: hidden;
}

.science-card::before,
.path-item::before,
.auth-point::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tl-teal), var(--tl-gold), var(--tl-orange));
  opacity: 0.78;
}

.comparison,
.auth-story,
.auth-aside {
  box-shadow: 0 30px 80px rgba(7, 29, 51, 0.22);
}

.table thead th {
  color: #475467;
  background: #f8fafc;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.table tbody tr {
  transition: background 0.16s ease;
}

.table tbody tr:hover {
  background: #f8fbff;
}

.tl-select {
  position: relative;
  width: 100%;
}

.tl-select .form-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip-path: inset(50%) !important;
}

.tl-select-button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d9e0ec;
  border-radius: 10px;
  background: #fff;
  color: #172033;
  font: inherit;
  font-weight: 650;
  line-height: 1.35;
  padding: 11px 14px;
  text-align: left;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.tl-select-button::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 2px solid #667085;
  border-bottom: 2px solid #667085;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.16s ease;
}

.tl-select-button:hover {
  border-color: #b8c7dd;
  background: #fbfdff;
}

.tl-select-button:focus-visible,
.tl-select.is-open .tl-select-button {
  outline: 0;
  border-color: #2557a7;
  box-shadow: 0 0 0 4px rgba(37, 87, 167, 0.12);
}

.tl-select.is-open .tl-select-button::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.tl-select-button.is-placeholder {
  color: #667085;
}

.tl-select-menu {
  position: absolute;
  z-index: 2600;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: min(320px, 46vh);
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s ease;
}

.tl-select.drop-up .tl-select-menu {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(4px);
}

.tl-select.is-open .tl-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tl-select-option {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #172033;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  padding: 9px 10px;
  text-align: left;
}

.tl-select-option:hover,
.tl-select-option:focus-visible {
  outline: 0;
  background: #eef4ff;
  color: #153e75;
}

.tl-select-option.is-selected {
  background: linear-gradient(135deg, #eef4ff, #e9fff9);
  color: #153e75;
  font-weight: 800;
}

.tl-select-option.is-selected::before {
  content: "✓";
  color: #17a89b;
  font-weight: 900;
}

.tl-select-option:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.tl-select-menu::-webkit-scrollbar {
  width: 8px;
}

.tl-select-menu::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.96)) !important;
}

/* Site density pass: keep public pages polished but less airy. */
body:not(.no-mobile-action) .section-pad,
body:not(.no-mobile-action) .py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

body:not(.no-mobile-action) main.pb-5,
body:not(.no-mobile-action) .container.pb-5,
body:not(.no-mobile-action) .container-narrow.pb-5 {
  padding-bottom: 2.5rem !important;
}

body:not(.no-mobile-action) .row.g-4 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

body:not(.no-mobile-action) .row.g-5 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

body:not(.no-mobile-action) .surface-card,
body:not(.no-mobile-action) .soft-card,
body:not(.no-mobile-action) .card,
body:not(.no-mobile-action) .support-card,
body:not(.no-mobile-action) .policy-card,
body:not(.no-mobile-action) .faq-card,
body:not(.no-mobile-action) .buy-guide-card,
body:not(.no-mobile-action) .benefit-card,
body:not(.no-mobile-action) .process-step,
body:not(.no-mobile-action) .sample-proof-card,
body:not(.no-mobile-action) .value-card,
body:not(.no-mobile-action) .method-panel,
body:not(.no-mobile-action) .dimension-card,
body:not(.no-mobile-action) .usage-card,
body:not(.no-mobile-action) .major-tile,
body:not(.no-mobile-action) .collection-card,
body:not(.no-mobile-action) .major-trust-card,
body:not(.no-mobile-action) .org-panel,
body:not(.no-mobile-action) .org-module,
body:not(.no-mobile-action) .entry-card,
body:not(.no-mobile-action) .guide-card,
body:not(.no-mobile-action) .onepage-card,
body:not(.no-mobile-action) .lab-card,
body:not(.no-mobile-action) .chapter-card {
  border-radius: 10px !important;
  padding: 16px !important;
  box-shadow: 0 6px 18px rgba(16,24,40,.055) !important;
}

body:not(.no-mobile-action) .card-body {
  padding: 1rem !important;
}

body:not(.no-mobile-action) .card-header {
  padding: .8rem 1rem !important;
}

body:not(.no-mobile-action) .support-hero,
body:not(.no-mobile-action) .pricing-hero,
body:not(.no-mobile-action) .sample-hero,
body:not(.no-mobile-action) .method-hero,
body:not(.no-mobile-action) .org-hero,
body:not(.no-mobile-action) .major-hero {
  padding-top: 26px !important;
  padding-bottom: 36px !important;
}

body:not(.no-mobile-action) .support-grid,
body:not(.no-mobile-action) .buy-guide,
body:not(.no-mobile-action) .benefit-grid,
body:not(.no-mobile-action) .process-grid,
body:not(.no-mobile-action) .sample-proof-grid,
body:not(.no-mobile-action) .dimension-grid,
body:not(.no-mobile-action) .usage-grid,
body:not(.no-mobile-action) .major-grid,
body:not(.no-mobile-action) .collection-grid,
body:not(.no-mobile-action) .guide-strip,
body:not(.no-mobile-action) .major-trust-grid,
body:not(.no-mobile-action) .org-grid {
  gap: 10px !important;
}

body:not(.no-mobile-action) .service-panel,
body:not(.no-mobile-action) .process-panel,
body:not(.no-mobile-action) .checklist-panel,
body:not(.no-mobile-action) .cta-sample,
body:not(.no-mobile-action) .major-toolbar,
body:not(.no-mobile-action) .major-next-panel {
  margin-top: 22px !important;
  padding: 20px !important;
  border-radius: 12px !important;
}

body:not(.no-mobile-action) .service-step,
body:not(.no-mobile-action) .check-item,
body:not(.no-mobile-action) .chapter-row,
body:not(.no-mobile-action) .answer-card,
body:not(.no-mobile-action) .guide-item,
body:not(.no-mobile-action) .hero-board-card {
  padding: 14px !important;
  min-height: 0 !important;
}

body:not(.no-mobile-action) .faq-mini,
body:not(.no-mobile-action) .faq-grid,
body:not(.no-mobile-action) .two-report-grid,
body:not(.no-mobile-action) .compare-grid {
  margin-top: 28px !important;
  gap: 12px !important;
}

body:not(.no-mobile-action) .section-head,
body:not(.no-mobile-action) .major-section-head {
  margin-top: 16px !important;
  margin-bottom: 12px !important;
}

body:not(.no-mobile-action) .mt-5 {
  margin-top: 1.5rem !important;
}

body:not(.no-mobile-action) .mb-5 {
  margin-bottom: 1.5rem !important;
}

@media (max-width: 768px) {
  body:not(.no-mobile-action) .section-pad,
  body:not(.no-mobile-action) .py-5 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  body:not(.no-mobile-action) .support-hero,
  body:not(.no-mobile-action) .pricing-hero,
  body:not(.no-mobile-action) .sample-hero,
  body:not(.no-mobile-action) .method-hero,
  body:not(.no-mobile-action) .org-hero,
  body:not(.no-mobile-action) .major-hero {
    padding-top: 28px !important;
    padding-bottom: 40px !important;
  }

  body:not(.no-mobile-action) .surface-card,
  body:not(.no-mobile-action) .soft-card,
  body:not(.no-mobile-action) .card,
  body:not(.no-mobile-action) .support-card,
  body:not(.no-mobile-action) .policy-card,
  body:not(.no-mobile-action) .faq-card,
  body:not(.no-mobile-action) .buy-guide-card,
  body:not(.no-mobile-action) .benefit-card,
  body:not(.no-mobile-action) .process-step,
  body:not(.no-mobile-action) .sample-proof-card,
  body:not(.no-mobile-action) .value-card,
  body:not(.no-mobile-action) .method-panel,
  body:not(.no-mobile-action) .dimension-card,
  body:not(.no-mobile-action) .usage-card,
  body:not(.no-mobile-action) .major-tile,
  body:not(.no-mobile-action) .collection-card,
  body:not(.no-mobile-action) .major-trust-card,
  body:not(.no-mobile-action) .org-panel,
  body:not(.no-mobile-action) .org-module,
  body:not(.no-mobile-action) .entry-card,
  body:not(.no-mobile-action) .guide-card,
  body:not(.no-mobile-action) .onepage-card,
  body:not(.no-mobile-action) .lab-card,
  body:not(.no-mobile-action) .chapter-card {
    padding: 14px !important;
  }
}

/* Mobile-first refinement for the home page: compact, product-like, not a scaled desktop page. */
@media (max-width: 640px) {
  body:not(.no-mobile-action) .ce-hero {
    padding-top: 22px !important;
    padding-bottom: 30px !important;
  }

  body:not(.no-mobile-action) .ce-hero .container {
    display: block;
  }

  body:not(.no-mobile-action) .ce-hero .row {
    --bs-gutter-y: 0;
  }

  body:not(.no-mobile-action) .ce-hero .eyebrow {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body:not(.no-mobile-action) .ce-hero .hero-title {
    max-width: 11.5em;
    font-size: 27px !important;
    line-height: 1.14 !important;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
  }

  body:not(.no-mobile-action) .ce-hero .hero-copy {
    max-width: 25em;
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
  }

  body:not(.no-mobile-action) .ce-hero .brand-proof {
    margin-top: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #d7e4f4 !important;
    font-size: 12px !important;
  }

  body:not(.no-mobile-action) .ce-hero .brand-proof img {
    display: none !important;
  }

  body:not(.no-mobile-action) .ce-hero .brand-proof span {
    flex: 1 1 auto !important;
  }

  body:not(.no-mobile-action) .ce-hero .brand-proof span::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #17a89b;
    margin-right: 7px;
    box-shadow: 0 0 0 4px rgba(23, 168, 155, .16);
    vertical-align: 1px;
  }

  body:not(.no-mobile-action) .ce-hero .hero-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px !important;
    margin-top: 14px !important;
  }

  body:not(.no-mobile-action) .ce-hero .hero-actions a,
  body:not(.no-mobile-action) .ce-hero .btn-hero,
  body:not(.no-mobile-action) .ce-hero .btn-ghost {
    width: auto !important;
    min-width: 0 !important;
    justify-content: center !important;
    padding: 10px 8px !important;
    font-size: 13px !important;
    white-space: nowrap;
  }

  body:not(.no-mobile-action) .ce-hero .hero-proof-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px !important;
    margin-top: 12px !important;
  }

  body:not(.no-mobile-action) .ce-hero .hero-proof-item {
    min-height: 0 !important;
    padding: 8px !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.08) !important;
  }

  body:not(.no-mobile-action) .ce-hero .hero-proof-item b {
    gap: 4px !important;
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  body:not(.no-mobile-action) .ce-hero .hero-proof-item span {
    display: none !important;
  }

  body:not(.no-mobile-action) main.container-narrow {
    padding-top: 0 !important;
  }

  body:not(.no-mobile-action) #start.start-panel {
    margin-top: -24px !important;
    margin-bottom: 14px !important;
    padding: 14px !important;
    border-radius: 12px !important;
  }

  body:not(.no-mobile-action) #start .section-heading {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  body:not(.no-mobile-action) #start p,
  body:not(.no-mobile-action) #start .text-muted {
    font-size: 13px !important;
    line-height: 1.52 !important;
  }

  body:not(.no-mobile-action) #start .d-flex.gap-3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
  }

  body:not(.no-mobile-action) #start .d-flex.gap-3 .btn {
    width: auto !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  body:not(.no-mobile-action) .onboarding-strip {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  body:not(.no-mobile-action) .onboarding-step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    align-items: start;
    padding: 10px 12px !important;
  }

  body:not(.no-mobile-action) .onboarding-step b {
    margin: 0 !important;
    white-space: nowrap;
    font-size: 13px !important;
  }

  body:not(.no-mobile-action) .onboarding-step span {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body:not(.no-mobile-action) .compact-section {
    padding: 12px !important;
    border-radius: 12px !important;
  }

  body:not(.no-mobile-action) .stat-row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    border-radius: 10px !important;
  }

  body:not(.no-mobile-action) .stat-cell {
    padding: 9px 6px !important;
    text-align: center;
  }

  body:not(.no-mobile-action) .stat-number {
    font-size: 22px !important;
  }

  body:not(.no-mobile-action) .stat-cell .text-muted {
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  body:not(.no-mobile-action) #science .row {
    margin-bottom: 10px !important;
  }

  body:not(.no-mobile-action) #science .section-heading {
    font-size: 22px !important;
    margin-bottom: 6px !important;
  }

  body:not(.no-mobile-action) #science .muted-large {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  body:not(.no-mobile-action) .science-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  body:not(.no-mobile-action) .science-card {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 38px 1fr;
    column-gap: 10px;
    align-items: start;
    padding: 12px !important;
  }

  body:not(.no-mobile-action) .science-card .science-icon {
    grid-row: span 2;
    margin: 0 !important;
  }

  body:not(.no-mobile-action) .science-card h5 {
    margin: 0 0 4px !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  body:not(.no-mobile-action) .science-card p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body:not(.no-mobile-action) #science .mt-4 {
    margin-top: 10px !important;
  }

  body:not(.no-mobile-action) .work-step {
    grid-template-columns: 34px 1fr !important;
    gap: 10px !important;
    padding: 14px 0 !important;
  }

  body:not(.no-mobile-action) .step-num {
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
    border-radius: 9px !important;
  }
}

/* 在汉堡菜单可见的所有断点（<992px）禁用 pill 胶囊形态，防止 transform 导致折叠菜单偏位 */
@media (max-width: 991.98px) {
  .navbar {
    position: sticky;
  }

  .site-navbar,
  .site-navbar.is-compact {
    position: sticky;
    left: auto;
    top: 0;
    width: 100%;
    min-height: 64px;
    margin: 0;
    transform: none;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .site-navbar.is-compact .brand-wide {
    height: 56px;
    width: 168px;
  }

  .site-navbar.is-compact .nav-link,
  .site-navbar.is-compact .btn {
    font-size: 14px;
    padding: 10px 12px !important;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding-bottom: 12px;
  }

  .navbar-nav .nav-link,
  .navbar-nav .btn {
    min-height: 42px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    background:
      radial-gradient(circle at 8% 4%, rgba(23, 168, 155, 0.09), transparent 18rem),
      linear-gradient(180deg, #f4f8fc 0%, #f8fafc 44%, #ffffff 100%) !important;
  }

  body:not(.no-mobile-action) main,
  body:not(.no-mobile-action) .container,
  body:not(.no-mobile-action) .container-narrow {
    max-width: 100%;
  }

  body:not(.no-mobile-action) main.container,
  body:not(.no-mobile-action) main.container-narrow,
  body:not(.no-mobile-action) .container.container-narrow {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body:not(.no-mobile-action) .ce-hero,
  body:not(.no-mobile-action) .about-hero,
  body:not(.no-mobile-action) .method-hero,
  body:not(.no-mobile-action) .pricing-hero,
  body:not(.no-mobile-action) .sample-hero,
  body:not(.no-mobile-action) .support-hero,
  body:not(.no-mobile-action) .org-hero,
  body:not(.no-mobile-action) .major-hero {
    padding-top: 22px !important;
    padding-bottom: 36px !important;
    background: linear-gradient(135deg, #071d33, #153e75 68%, #0e746e) !important;
  }

  body:not(.no-mobile-action) .hero-title,
  body:not(.no-mobile-action) .about-title,
  body:not(.no-mobile-action) .method-title,
  body:not(.no-mobile-action) .pricing-title,
  body:not(.no-mobile-action) .sample-title,
  body:not(.no-mobile-action) .support-title,
  body:not(.no-mobile-action) .major-title {
    font-size: 26px !important;
    line-height: 1.18 !important;
    margin-top: 8px !important;
    margin-bottom: 6px !important;
    letter-spacing: 0 !important;
  }

  body:not(.no-mobile-action) .hero-copy,
  body:not(.no-mobile-action) .about-copy,
  body:not(.no-mobile-action) .method-copy,
  body:not(.no-mobile-action) .pricing-copy,
  body:not(.no-mobile-action) .sample-copy,
  body:not(.no-mobile-action) .support-copy,
  body:not(.no-mobile-action) .major-copy,
  body:not(.no-mobile-action) .muted-large {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  body:not(.no-mobile-action) .section-heading,
  body:not(.no-mobile-action) .section-head h2,
  body:not(.no-mobile-action) .major-section-head h2,
  body:not(.no-mobile-action) .final-cta-head h2 {
    font-size: 24px !important;
    line-height: 1.22 !important;
  }

  body:not(.no-mobile-action) .section-head p,
  body:not(.no-mobile-action) .major-section-head p,
  body:not(.no-mobile-action) .final-cta-head p {
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  body:not(.no-mobile-action) .pill,
  body:not(.no-mobile-action) .eyebrow,
  body:not(.no-mobile-action) .about-kicker {
    min-height: 32px;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
  }

  body:not(.no-mobile-action) .hero-actions,
  body:not(.no-mobile-action) .about-actions,
  body:not(.no-mobile-action) .pricing-hero-actions,
  body:not(.no-mobile-action) .support-actions {
    gap: 8px !important;
    margin-top: 16px !important;
  }

  body:not(.no-mobile-action) .btn,
  body:not(.no-mobile-action) .btn-sm,
  body:not(.no-mobile-action) .btn-lg,
  body:not(.no-mobile-action) .btn-hero,
  body:not(.no-mobile-action) .btn-ghost,
  body:not(.no-mobile-action) .about-btn {
    min-height: 40px !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.25 !important;
  }

  body:not(.no-mobile-action) .surface-card,
  body:not(.no-mobile-action) .soft-card,
  body:not(.no-mobile-action) .card,
  body:not(.no-mobile-action) .start-panel,
  body:not(.no-mobile-action) .method-panel,
  body:not(.no-mobile-action) .dimension-card,
  body:not(.no-mobile-action) .usage-card,
  body:not(.no-mobile-action) .about-card-section,
  body:not(.no-mobile-action) .method-card,
  body:not(.no-mobile-action) .system-card,
  body:not(.no-mobile-action) .trust-card,
  body:not(.no-mobile-action) .audience-card,
  body:not(.no-mobile-action) .faq-card,
  body:not(.no-mobile-action) .final-action,
  body:not(.no-mobile-action) .price-card,
  body:not(.no-mobile-action) .buy-guide-card,
  body:not(.no-mobile-action) .benefit-card,
  body:not(.no-mobile-action) .process-panel,
  body:not(.no-mobile-action) .process-step,
  body:not(.no-mobile-action) .sample-proof-card,
  body:not(.no-mobile-action) .value-card,
  body:not(.no-mobile-action) .report-type,
  body:not(.no-mobile-action) .compare-card,
  body:not(.no-mobile-action) .major-tile,
  body:not(.no-mobile-action) .collection-card,
  body:not(.no-mobile-action) .guide-item,
  body:not(.no-mobile-action) .major-trust-card,
  body:not(.no-mobile-action) .org-panel,
  body:not(.no-mobile-action) .org-module,
  body:not(.no-mobile-action) .entry-card,
  body:not(.no-mobile-action) .guide-card,
  body:not(.no-mobile-action) .support-card,
  body:not(.no-mobile-action) .policy-card,
  body:not(.no-mobile-action) .check-item {
    border-radius: 10px !important;
    padding: 14px !important;
    border-color: rgba(16, 24, 40, 0.10) !important;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.055) !important;
  }

  body:not(.no-mobile-action) .section-pad,
  body:not(.no-mobile-action) .about-section {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  body:not(.no-mobile-action) .section-pad + .section-pad,
  body:not(.no-mobile-action) .about-card-section.about-section,
  body:not(.no-mobile-action) .method-panel,
  body:not(.no-mobile-action) .process-panel,
  body:not(.no-mobile-action) .cta-sample,
  body:not(.no-mobile-action) .about-final-cta,
  body:not(.no-mobile-action) .major-next-panel {
    margin-top: 4px !important;
  }

  body:not(.no-mobile-action) .mb-4 {
    margin-bottom: 1rem !important;
  }

  body:not(.no-mobile-action) .mt-4 {
    margin-top: 1rem !important;
  }

  body:not(.no-mobile-action) .mb-3 {
    margin-bottom: 0.625rem !important;
  }

  body:not(.no-mobile-action) .row.g-3,
  body:not(.no-mobile-action) .row.g-4,
  body:not(.no-mobile-action) .row.g-5 {
    --bs-gutter-x: .625rem;
    --bs-gutter-y: .625rem;
  }

  body:not(.no-mobile-action) .science-grid,
  body:not(.no-mobile-action) .major-lab,
  body:not(.no-mobile-action) .growth-steps,
  body:not(.no-mobile-action) .institution-grid,
  body:not(.no-mobile-action) .parent-grid,
  body:not(.no-mobile-action) .onboarding-strip,
  body:not(.no-mobile-action) .trust-system,
  body:not(.no-mobile-action) .pricing-proof,
  body:not(.no-mobile-action) .dimension-grid,
  body:not(.no-mobile-action) .usage-grid,
  body:not(.no-mobile-action) .method-grid,
  body:not(.no-mobile-action) .system-grid,
  body:not(.no-mobile-action) .trust-grid,
  body:not(.no-mobile-action) .audience-grid,
  body:not(.no-mobile-action) .faq-grid,
  body:not(.no-mobile-action) .final-action-grid,
  body:not(.no-mobile-action) .pricing-grid,
  body:not(.no-mobile-action) .buy-guide,
  body:not(.no-mobile-action) .benefit-grid,
  body:not(.no-mobile-action) .process-grid,
  body:not(.no-mobile-action) .sample-proof-grid,
  body:not(.no-mobile-action) .collection-grid,
  body:not(.no-mobile-action) .major-grid,
  body:not(.no-mobile-action) .guide-strip {
    gap: 10px !important;
  }

  body:not(.no-mobile-action) .science-icon,
  body:not(.no-mobile-action) .method-icon,
  body:not(.no-mobile-action) .dimension-card i,
  body:not(.no-mobile-action) .trust-card > i,
  body:not(.no-mobile-action) .final-action > i,
  body:not(.no-mobile-action) .buy-guide-card i,
  body:not(.no-mobile-action) .benefit-card i,
  body:not(.no-mobile-action) .support-card i,
  body:not(.no-mobile-action) .sample-proof-card i,
  body:not(.no-mobile-action) .pricing-proof-card i,
  body:not(.no-mobile-action) .major-trust-card i {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 9px !important;
    background: #eef4ff !important;
    color: #153e75 !important;
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  body:not(.no-mobile-action) .lab-showcase,
  body:not(.no-mobile-action) .comparison,
  body:not(.no-mobile-action) .growth-board,
  body:not(.no-mobile-action) .institution-panel,
  body:not(.no-mobile-action) .about-band,
  body:not(.no-mobile-action) .promise-panel {
    border-radius: 12px !important;
    padding: 18px !important;
  }

  body:not(.no-mobile-action) .lab-head {
    display: block !important;
    padding: 0 0 14px !important;
  }

  body:not(.no-mobile-action) .lab-track,
  body:not(.no-mobile-action) .lab-prompt-track {
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 10px !important;
    animation-duration: 46s !important;
  }

  body:not(.no-mobile-action) .lab-card {
    flex-basis: 220px !important;
    min-height: 150px !important;
    border-radius: 12px !important;
    padding: 14px !important;
  }

  body:not(.no-mobile-action) .motion-ribbon,
  body:not(.no-mobile-action) .hero-proof-row,
  body:not(.no-mobile-action) .brand-proof {
    margin-top: 14px !important;
  }

  body:not(.no-mobile-action) .hero-proof-row,
  body:not(.no-mobile-action) .stat-row,
  body:not(.no-mobile-action) .hero-metric-row,
  body:not(.no-mobile-action) .visual-metric-grid {
    gap: 1px !important;
  }

  body:not(.no-mobile-action) .stat-cell,
  body:not(.no-mobile-action) .hero-proof-item,
  body:not(.no-mobile-action) .visual-metric,
  body:not(.no-mobile-action) .proof-item,
  body:not(.no-mobile-action) .about-stat {
    padding: 12px !important;
  }

  body:not(.no-mobile-action) .stat-number,
  body:not(.no-mobile-action) .about-stat strong,
  body:not(.no-mobile-action) .price-number {
    font-size: 26px !important;
  }

  body:not(.no-mobile-action) .card:hover,
  body:not(.no-mobile-action) .science-card:hover,
  body:not(.no-mobile-action) .major-tile:hover,
  body:not(.no-mobile-action) .dimension-card:hover,
  body:not(.no-mobile-action) .lab-card:hover {
    transform: none !important;
  }

  body:not(.no-mobile-action) .reveal-on-scroll {
    transform: translateY(8px);
    transition-duration: .32s;
  }

  @media (max-width: 520px) {
    body:not(.no-mobile-action) .ce-hero,
    body:not(.no-mobile-action) .about-hero,
    body:not(.no-mobile-action) .method-hero,
    body:not(.no-mobile-action) .pricing-hero,
    body:not(.no-mobile-action) .sample-hero,
    body:not(.no-mobile-action) .support-hero,
    body:not(.no-mobile-action) .org-hero,
    body:not(.no-mobile-action) .major-hero {
      padding-top: 26px !important;
      padding-bottom: 38px !important;
    }

    body:not(.no-mobile-action) .ce-hero {
      padding-top: 20px !important;
      padding-bottom: 26px !important;
    }

    body:not(.no-mobile-action) .start-panel,
    body:not(.no-mobile-action) .method-shell,
    body:not(.no-mobile-action) .pricing-shell,
    body:not(.no-mobile-action) .support-shell,
    body:not(.no-mobile-action) .major-toolbar {
      margin-top: -20px !important;
    }

    body:not(.no-mobile-action) .hero-title,
    body:not(.no-mobile-action) .about-title,
    body:not(.no-mobile-action) .method-title,
    body:not(.no-mobile-action) .pricing-title,
    body:not(.no-mobile-action) .sample-title,
    body:not(.no-mobile-action) .support-title,
    body:not(.no-mobile-action) .major-title {
      font-size: 26px !important;
    }

    body:not(.no-mobile-action) .hero-visual,
    body:not(.no-mobile-action) .major-explorer,
    body:not(.no-mobile-action) .pricing-visual {
      min-height: 0 !important;
      margin-top: 14px !important;
    }

    body:not(.no-mobile-action) .logo-stage,
    body:not(.no-mobile-action) .match-card,
    body:not(.no-mobile-action) .signal-tag,
    body:not(.no-mobile-action) .floating-major,
    body:not(.no-mobile-action) .major-explorer-core {
      animation: none !important;
    }

    body:not(.no-mobile-action) .hero-photo-wrap,
    body:not(.no-mobile-action) .hero-visual {
      display: none !important;
    }

    body:not(.no-mobile-action) .brand-proof {
      display: grid !important;
      gap: 8px !important;
    }

    body:not(.no-mobile-action) .brand-proof img {
      width: 160px !important;
      height: auto !important;
    }

    body:not(.no-mobile-action) .motion-ribbon,
    body:not(.no-mobile-action) .lab-stream,
    body:not(.no-mobile-action) .lab-prompt-row {
      mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%) !important;
    }

    body:not(.no-mobile-action) .section-heading,
    body:not(.no-mobile-action) .section-head h2,
    body:not(.no-mobile-action) .major-section-head h2,
    body:not(.no-mobile-action) .final-cta-head h2 {
      font-size: 22px !important;
    }

    body:not(.no-mobile-action) h3,
    body:not(.no-mobile-action) .h3 {
      font-size: 19px !important;
    }

    body:not(.no-mobile-action) h4,
    body:not(.no-mobile-action) h5 {
      line-height: 1.28 !important;
    }

    body:not(.no-mobile-action) .price-card ul,
    body:not(.no-mobile-action) .clean-list,
    body:not(.no-mobile-action) .worry-list,
    body:not(.no-mobile-action) .promise-list {
      gap: 8px !important;
      margin-top: 12px !important;
    }

    body:not(.no-mobile-action) .price-card li,
    body:not(.no-mobile-action) .clean-list li,
    body:not(.no-mobile-action) .worry-list li,
    body:not(.no-mobile-action) .promise-item,
    body:not(.no-mobile-action) .limit-list li {
      font-size: 13px !important;
      line-height: 1.55 !important;
    }

    body:not(.no-mobile-action) .comparison {
      overflow-x: auto !important;
    }

    body:not(.no-mobile-action) .comparison th,
    body:not(.no-mobile-action) .comparison td {
      padding: 12px !important;
      font-size: 13px !important;
    }

    body:not(.no-mobile-action) footer .container {
      padding-top: 22px !important;
      padding-bottom: 22px !important;
    }
  }

  .site-trust-strip {
    display: none;
  }

  .site-trust-item {
    min-height: auto;
    padding: 15px;
  }

  footer {
    padding-bottom: 24px !important;
  }

  #wechat-fab {
    display: none !important;
  }

  body.no-mobile-action {
    padding-bottom: 0 !important;
  }

  body.no-mobile-action #wechat-fab {
    bottom: 32px !important;
  }

  body.no-mobile-action footer {
    padding-bottom: 24px !important;
  }

  #wechat-popup {
    width: 150px !important;
    padding: 14px !important;
  }

  .mobile-action-bar {
    display: none !important;
  }

  .mobile-action-bar a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.25;
  }

  .hero-actions .btn-hero,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .auth-story,
  .auth-aside {
    background-size: 260px auto !important;
  }

  .back-to-top {
    right: 14px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Universal app-page compact pass (login / result / payment / account / test)
   body.no-mobile-action 是这些页面的 body 类，
   app-polish.css 的 body:not(.no-mobile-action) 规则对它们无效，
   此节单独补齐密度收紧 ── */
@media (max-width: 768px) {
  body.no-mobile-action .container,
  body.no-mobile-action .container-narrow {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  body.no-mobile-action .card-body {
    padding: 14px !important;
  }

  body.no-mobile-action .card-header {
    padding: 12px 14px !important;
    font-size: 15px !important;
  }

  body.no-mobile-action .py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  body.no-mobile-action .py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  body.no-mobile-action .mb-4 { margin-bottom: 1rem !important; }
  body.no-mobile-action .mt-4 { margin-top: 1rem !important; }
  body.no-mobile-action .mb-5 { margin-bottom: 1.5rem !important; }
  body.no-mobile-action .mt-5 { margin-top: 1.5rem !important; }

  body.no-mobile-action .row.g-3,
  body.no-mobile-action .row.g-4,
  body.no-mobile-action .row.g-5 {
    --bs-gutter-x: 0.625rem;
    --bs-gutter-y: 0.625rem;
  }

  body.no-mobile-action .surface-card,
  body.no-mobile-action .soft-card {
    border-radius: 10px !important;
    padding: 14px !important;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.055) !important;
  }
}

/* ── 窄屏补丁（≤430px）：全局 utility 收紧，覆盖所有页面 ── */
@media (max-width: 430px) {
  /* 防止文字溢出容器 */
  h1, h2, h3, h4, h5 { overflow-wrap: break-word; }

  /* 超小屏进一步压缩左右边距 */
  .container, .container-narrow {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* Bootstrap row gap 压缩 */
  .row.g-3, .row.g-4, .row.g-5 {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
  }

  /* 通用间距 */
  .py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
  .py-4 { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
  .pt-5 { padding-top: 1.25rem !important; }
  .pb-5 { padding-bottom: 1.25rem !important; }
  .mb-5, .mt-5 { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }
  .mb-4, .mt-4 { margin-top: 0.875rem !important; margin-bottom: 0.875rem !important; }

  /* 通用 card 密度 */
  .card-body { padding: 12px !important; }
  .card-header { padding: 10px 12px !important; }

  /* 按钮高度对齐触摸标准但去掉多余内边距 */
  .btn { min-height: 40px !important; padding: 8px 12px !important; }
  .btn-lg { padding: 10px 14px !important; font-size: 14px !important; }
  .btn-sm { padding: 6px 10px !important; }

  /* 表格字号 */
  .table, .table th, .table td { font-size: 13px !important; }
}

/* ── Professional density pass: reduce template feel and keep pages compact ── */
:root {
  --tl-shadow-sm: 0 6px 18px rgba(16, 24, 40, 0.06);
  --tl-shadow: 0 14px 34px rgba(16, 24, 40, 0.10);
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(23, 168, 155, 0.08), transparent 22rem),
    linear-gradient(180deg, #f7f9fc 0%, #f5f7fb 42%, #ffffff 100%) !important;
}

.container-narrow {
  max-width: 1080px !important;
}

.section-pad,
.about-section,
.py-5 {
  padding-top: 1.35rem !important;
  padding-bottom: 1.35rem !important;
}

.ce-hero,
.about-hero,
.method-hero,
.pricing-hero,
.sample-hero,
.support-hero,
.org-hero,
.major-hero {
  padding-top: 34px !important;
  padding-bottom: 46px !important;
}

.hero-title,
.about-title,
.method-title,
.pricing-title,
.sample-title,
.support-title,
.major-title {
  max-width: 780px;
  font-size: clamp(32px, 4.1vw, 48px) !important;
  line-height: 1.08 !important;
  margin-top: 14px !important;
  margin-bottom: 12px !important;
}

.hero-copy,
.about-copy,
.method-copy,
.pricing-copy,
.sample-copy,
.support-copy,
.major-copy,
.muted-large {
  font-size: 15px !important;
  line-height: 1.66 !important;
}

.section-heading,
.section-head h2,
.major-section-head h2,
.decision-map-head h2,
.final-cta-head h2 {
  font-size: clamp(24px, 2.4vw, 32px) !important;
  line-height: 1.18 !important;
}

.section-head,
.major-section-head,
.decision-map-head {
  margin-bottom: 14px !important;
}

.row.g-4 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.row.g-5 {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

.surface-card,
.soft-card,
.card,
.start-panel,
.method-panel,
.dimension-card,
.usage-card,
.about-card-section,
.method-card,
.system-card,
.trust-card,
.audience-card,
.faq-card,
.final-action,
.price-card,
.buy-guide-card,
.benefit-card,
.process-panel,
.process-step,
.sample-proof-card,
.value-card,
.report-type,
.compare-card,
.major-tile,
.collection-card,
.guide-item,
.major-trust-card,
.org-panel,
.org-module,
.entry-card,
.guide-card,
.support-card,
.policy-card,
.check-item,
.lab-card,
.pricing-proof-card,
.institution-card {
  border-radius: 8px !important;
  box-shadow: 0 5px 16px rgba(16, 24, 40, 0.055) !important;
}

.soft-card.p-4,
.surface-card.p-4,
.card.p-4,
.pricing-proof-card,
.institution-card,
.trust-system-card,
.major-card,
.science-card,
.method-card,
.system-card,
.audience-card,
.faq-card,
.delivery-card,
.decision-map-step {
  padding: 16px !important;
}

.science-grid,
.trust-system,
.major-lab,
.growth-steps,
.institution-grid,
.pricing-proof,
.dimension-grid,
.usage-grid,
.method-grid,
.system-grid,
.delivery-grid,
.audience-grid,
.faq-grid,
.major-grid,
.collection-grid,
.guide-strip,
.major-trust-grid,
.decision-map-grid {
  gap: 10px !important;
}

.hero-visual,
.major-explorer,
.pricing-visual {
  min-height: 320px !important;
}

.logo-stage {
  width: 220px !important;
  height: 220px !important;
  border-radius: 18px !important;
}

.logo-stage img {
  width: 168px !important;
  height: 168px !important;
}

.match-card,
.floating-major {
  border-radius: 8px !important;
  padding: 12px !important;
}

.motion-ribbon,
.lab-stream,
.lab-prompt-row {
  display: none !important;
}

.lab-showcase {
  padding: 22px !important;
  border-radius: 10px !important;
}

.lab-head {
  padding: 0 0 14px !important;
  gap: 14px !important;
}

.lab-card {
  min-height: 138px !important;
}

.lab-card:nth-child(n + 7) {
  display: none !important;
}

.lab-track {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 0 !important;
  transform: none !important;
  animation: none !important;
}

.btn,
.btn-hero,
.btn-ghost,
.about-btn {
  border-radius: 7px !important;
}

.reveal-on-scroll {
  transform: translateY(8px);
  transition-duration: .28s;
}

.spotlight-card::after,
.ce-hero::before,
.major-hero::after {
  opacity: .45;
}

@media (max-width: 992px) {
  .lab-track {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-visual,
  .major-explorer,
  .pricing-visual {
    min-height: 260px !important;
  }
}

@media (max-width: 768px) {
  .section-pad,
  .about-section,
  .py-5 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .ce-hero,
  .about-hero,
  .method-hero,
  .pricing-hero,
  .sample-hero,
  .support-hero,
  .org-hero,
  .major-hero {
    padding-top: 22px !important;
    padding-bottom: 30px !important;
  }

  .lab-track {
    grid-template-columns: 1fr !important;
  }

  .lab-showcase {
    padding: 14px !important;
  }
}
