/*
 * Analytee ORM Theme — Custom Styles
 * Theme: Analytee ORM | Focus: Review Analytics & Reputation Management
 * Complements the Nova Vite/Tailwind bundle.
 */

/* ── Base tokens ──────────────────────────────────────────── */
:root {
  --orm-teal:      #0d9488;
  --orm-teal-dark: #0f766e;
  --orm-teal-light:#99f6e4;
  --orm-teal-rgb: 13 148 136;
  --orm-teal-dark-rgb: 15 118 110;
  --orm-teal-light-rgb: 153 246 228;
  --orm-teal-accent: #14b8a6;
  --orm-teal-accent-rgb: 20 184 166;
  --orm-cyan-accent: #06b6d4;
  --orm-cyan-accent-rgb: 6 182 212;
  --orm-slate:     #0f172a;
  --orm-slate-mid: #1e293b;
  --orm-body-bg:   #ffffff;
  --orm-text:      #0f172a;
  --orm-text-secondary: #475569;
  --orm-text-muted: #64748b;
  --orm-text-soft: #334155;
  --orm-text-on-dark: #f8fafc;
  --orm-text-on-dark-secondary: #e2e8f0;
  --orm-text-on-dark-muted: #cbd5e1;
  --orm-text-on-dark-soft: #94a3b8;
  --orm-eyebrow-soft: #334155;
  --orm-border-soft: #cbd5e1;
  --orm-border-strong: #94a3b8;
  --orm-surface-subtle: #f8fafc;
  --orm-radius:    1rem;
  --orm-font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --orm-space-section: clamp(4rem, 8vw, 6rem);
  --orm-space-section-tight: clamp(3rem, 5vw, 4.5rem);
  --orm-space-card: clamp(1rem, 2.5vw, 1.5rem);
  --orm-text-display: clamp(2.25rem, 4vw, 3.5rem);
  --orm-text-section: clamp(1.875rem, 3vw, 2.5rem);
  --orm-safe-header: 5rem;
  --orm-cookie-offset: 0px;
  --orm-surface-base: #ffffff;
  --orm-surface-elevated: #ffffff;
  --orm-surface-soft: #f8fafc;
  --orm-shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --orm-shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.14);
}

html[data-color-scheme="light"] {
  color-scheme: light;
}

html[data-color-scheme="dark"] {
  color-scheme: dark;
}

.theme-analytee-orm[data-color-scheme="dark"] {
  --orm-body-bg: #020617;
  --orm-text: #f8fafc;
  --orm-text-secondary: #dbe5f0;
  --orm-text-muted: #b8c4d6;
  --orm-text-soft: #d7e1ee;
  --orm-border-soft: rgba(148, 163, 184, 0.28);
  --orm-border-strong: rgba(148, 163, 184, 0.5);
  --orm-surface-subtle: #0f172a;
  --orm-surface-base: #020617;
  --orm-surface-elevated: #0b1220;
  --orm-surface-soft: #111c2e;
  --orm-shadow-soft: 0 18px 42px rgba(2, 6, 23, 0.46);
  --orm-shadow-strong: 0 24px 60px rgba(2, 6, 23, 0.58);
}

/* ── Reset helpers ────────────────────────────────────────── */
.theme-analytee-orm {
  font-family: var(--orm-font);
  background: var(--orm-body-bg);
  color: var(--orm-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: calc(var(--orm-safe-header) + 1rem);
  --orm-cookie-offset: 0px;
}
.theme-analytee-orm[data-cookie-bar-visible='true'] {
  padding-bottom: var(--orm-cookie-offset);
}
.orm-skip-link {
  position: fixed;
  inset-inline-start: 1rem;
  inset-block-start: 1rem;
  z-index: 1200;
  padding: 0.75rem 1rem;
  background: #0f172a;
  color: #ffffff;
  border-radius: 0.875rem;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.orm-skip-link:focus {
  transform: translateY(0);
}
.orm-main-shell {
  min-width: 0;
}

.theme-analytee-orm[data-color-scheme="dark"] a {
  color: inherit;
}

.theme-analytee-orm[data-color-scheme="dark"] .bg-white,
.theme-analytee-orm[data-color-scheme="dark"] main .bg-white,
.theme-analytee-orm[data-color-scheme="dark"] nav.bg-white,
.theme-analytee-orm[data-color-scheme="dark"] footer .bg-white {
  background-color: var(--orm-surface-elevated) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] main,
.theme-analytee-orm[data-color-scheme="dark"] .orm-main-shell,
.theme-analytee-orm[data-color-scheme="dark"] .orm-page-shell,
.theme-analytee-orm[data-color-scheme="dark"] .orm-full-height-page {
  background-color: transparent;
  color: var(--orm-text);
}

.theme-analytee-orm[data-color-scheme="dark"] .bg-slate-50,
.theme-analytee-orm[data-color-scheme="dark"] .bg-gray-50,
.theme-analytee-orm[data-color-scheme="dark"] main .bg-slate-50,
.theme-analytee-orm[data-color-scheme="dark"] main .bg-gray-50 {
  background-color: var(--orm-surface-soft) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .border-gray-100,
.theme-analytee-orm[data-color-scheme="dark"] .border-gray-200,
.theme-analytee-orm[data-color-scheme="dark"] .border-slate-100,
.theme-analytee-orm[data-color-scheme="dark"] .border-slate-200,
.theme-analytee-orm[data-color-scheme="dark"] .border-slate-300,
.theme-analytee-orm[data-color-scheme="dark"] main .border-gray-100,
.theme-analytee-orm[data-color-scheme="dark"] main .border-gray-200,
.theme-analytee-orm[data-color-scheme="dark"] main .border-slate-100,
.theme-analytee-orm[data-color-scheme="dark"] main .border-slate-200,
.theme-analytee-orm[data-color-scheme="dark"] main .border-slate-300 {
  border-color: var(--orm-border-soft) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] {
  background: radial-gradient(circle at top, rgba(13, 148, 136, 0.14), transparent 24rem), var(--orm-body-bg);
}

.theme-analytee-orm[data-color-scheme="dark"] #orm-header {
  background: rgba(2, 6, 23, 0.82) !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.34);
}

html[data-color-scheme="dark"] body.theme-analytee-orm #orm-header {
  background: rgba(2, 6, 23, 0.82) !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.34);
}

.theme-analytee-orm[data-color-scheme="dark"] #orm-header img {
  filter: brightness(0) invert(1);
}

.theme-analytee-orm[data-color-scheme="dark"] #orm-header a:not(.bg-teal-600):not(.hover\:bg-teal-700),
.theme-analytee-orm[data-color-scheme="dark"] #orm-header button,
.theme-analytee-orm[data-color-scheme="dark"] #orm-mobile-drawer nav,
.theme-analytee-orm[data-color-scheme="dark"] #orm-language-menu,
.theme-analytee-orm[data-color-scheme="dark"] .cookie-policy-bar,
.theme-analytee-orm[data-color-scheme="dark"] .orm-auth-card,
.theme-analytee-orm[data-color-scheme="dark"] .faq-item,
.theme-analytee-orm[data-color-scheme="dark"] .testimonial-card {
  color: var(--orm-text);
}

.theme-analytee-orm[data-color-scheme="dark"] #orm-mobile-drawer nav,
.theme-analytee-orm[data-color-scheme="dark"] #orm-language-menu,
.theme-analytee-orm[data-color-scheme="dark"] .cookie-policy-bar .orm-cookie-panel,
.theme-analytee-orm[data-color-scheme="dark"] .orm-auth-card,
.theme-analytee-orm[data-color-scheme="dark"] .faq-item,
.theme-analytee-orm[data-color-scheme="dark"] .testimonial-card {
  background: var(--orm-surface-elevated) !important;
  box-shadow: var(--orm-shadow-soft);
}

.theme-analytee-orm[data-color-scheme="dark"] .cookie-policy-bar {
  background: transparent !important;
  border-top-color: var(--orm-border-soft) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .text-gray-900,
.theme-analytee-orm[data-color-scheme="dark"] .text-slate-900,
.theme-analytee-orm[data-color-scheme="dark"] .text-gray-800,
.theme-analytee-orm[data-color-scheme="dark"] .text-slate-800 {
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .text-gray-700,
.theme-analytee-orm[data-color-scheme="dark"] .text-slate-700,
.theme-analytee-orm[data-color-scheme="dark"] .text-gray-600,
.theme-analytee-orm[data-color-scheme="dark"] .text-slate-600 {
  color: var(--orm-text-secondary) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .hover\:bg-gray-50:hover,
.theme-analytee-orm[data-color-scheme="dark"] .hover\:bg-slate-50:hover {
  background-color: rgba(148, 163, 184, 0.12) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .hover\:text-gray-900:hover,
.theme-analytee-orm[data-color-scheme="dark"] .hover\:text-gray-800:hover {
  color: #ffffff !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .bg-teal-50,
.theme-analytee-orm[data-color-scheme="dark"] .hover\:bg-teal-50:hover {
  background-color: rgba(var(--orm-teal-rgb), 0.12) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .text-teal-700,
.theme-analytee-orm[data-color-scheme="dark"] .text-teal-600 {
  color: #7dd3fc !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .hover\:text-teal-700:hover,
.theme-analytee-orm[data-color-scheme="dark"] .hover\:text-teal-600:hover {
  color: #bae6fd !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-page-shell--marketing {
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.08) 0%, rgba(2, 6, 23, 0) 20rem);
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-input,
.theme-analytee-orm[data-color-scheme="dark"] input:not([type="checkbox"]):not([type="radio"]),
.theme-analytee-orm[data-color-scheme="dark"] textarea,
.theme-analytee-orm[data-color-scheme="dark"] select {
  background-color: #0f172a !important;
  color: var(--orm-text) !important;
  border-color: var(--orm-border-soft) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] input::placeholder,
.theme-analytee-orm[data-color-scheme="dark"] textarea::placeholder {
  color: var(--orm-text-muted) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .cookie-policy-bar a,
.theme-analytee-orm[data-color-scheme="dark"] .orm-footer-link,
.theme-analytee-orm[data-color-scheme="dark"] .orm-footer-link-muted {
  color: var(--orm-text-on-dark-muted);
}

.theme-analytee-orm[data-color-scheme="dark"] .cookie-policy-bar a:hover,
.theme-analytee-orm[data-color-scheme="dark"] .orm-footer-link:hover,
.theme-analytee-orm[data-color-scheme="dark"] .orm-footer-link-muted:hover {
  color: #ffffff;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-auth-social-button,
.theme-analytee-orm[data-color-scheme="dark"] .orm-theme-toggle {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.86) 100%);
  color: var(--orm-text);
  border-color: var(--orm-border-soft);
  box-shadow: var(--orm-shadow-soft);
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-auth-social-badge {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(148, 163, 184, 0.22);
}

.theme-analytee-orm[data-color-scheme="dark"] .shadow-sm,
.theme-analytee-orm[data-color-scheme="dark"] .shadow-md,
.theme-analytee-orm[data-color-scheme="dark"] .shadow-lg,
.theme-analytee-orm[data-color-scheme="dark"] .shadow-xl,
.theme-analytee-orm[data-color-scheme="dark"] .shadow-2xl,
.theme-analytee-orm[data-color-scheme="dark"] [class*="shadow-["] {
  box-shadow: var(--orm-shadow-soft) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-legal-card,
.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-form-card,
.theme-analytee-orm[data-color-scheme="dark"] .orm-resource-card,
.theme-analytee-orm[data-color-scheme="dark"] .orm-feature-card,
.theme-analytee-orm[data-color-scheme="dark"] .orm-usecase-card,
.theme-analytee-orm[data-color-scheme="dark"] .orm-testimonial-card,
.theme-analytee-orm[data-color-scheme="dark"] .blog-index-hero,
.theme-analytee-orm[data-color-scheme="dark"] .blog-body-section .rounded-2xl.bg-white,
.theme-analytee-orm[data-color-scheme="dark"] .blog-body-section article.bg-white,
.theme-analytee-orm[data-color-scheme="dark"] .blog-hero-section,
.theme-analytee-orm[data-color-scheme="dark"] .pricing-tooltip-content,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-card:not([data-featured='true']) {
  background: var(--orm-surface-elevated) !important;
  border-color: var(--orm-border-soft) !important;
  box-shadow: var(--orm-shadow-soft) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-section.bg-white,
.theme-analytee-orm[data-color-scheme="dark"] section.bg-white,
.theme-analytee-orm[data-color-scheme="dark"] .blog-hero-section.bg-white,
.theme-analytee-orm[data-color-scheme="dark"] .blog-body-section.bg-slate-50,
.theme-analytee-orm[data-color-scheme="dark"] .orm-section.bg-slate-50 {
  background-color: transparent !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .border-dashed {
  border-color: rgba(148, 163, 184, 0.34) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .blog-prose,
.theme-analytee-orm[data-color-scheme="dark"] .prose {
  color: var(--orm-text-secondary);
}

.theme-analytee-orm[data-color-scheme="dark"] .blog-prose h1,
.theme-analytee-orm[data-color-scheme="dark"] .blog-prose h2,
.theme-analytee-orm[data-color-scheme="dark"] .blog-prose h3,
.theme-analytee-orm[data-color-scheme="dark"] .prose h1,
.theme-analytee-orm[data-color-scheme="dark"] .prose h2,
.theme-analytee-orm[data-color-scheme="dark"] .prose h3 {
  color: var(--orm-text);
}

.theme-analytee-orm[data-color-scheme="dark"] .blog-prose a,
.theme-analytee-orm[data-color-scheme="dark"] .prose a {
  color: #7dd3fc;
}

.theme-analytee-orm[data-color-scheme="dark"] .blog-prose a:hover,
.theme-analytee-orm[data-color-scheme="dark"] .prose a:hover {
  color: #bae6fd;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-card[data-featured='true'] {
  box-shadow: 0 24px 56px rgba(8, 47, 73, 0.38) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-card[data-featured='true'] .orm-pricing-cta,
.theme-analytee-orm[data-color-scheme="dark"] .blog-body-section a.bg-white,
.theme-analytee-orm[data-color-scheme="dark"] a.bg-white.text-teal-700 {
  background: rgba(255, 255, 255, 0.96) !important;
  color: #0f766e !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(20, 184, 166, 0.1), transparent 18rem),
    linear-gradient(180deg, #07111f 0%, #091624 100%) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-texture {
  opacity: 0.11;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-badge {
  background: rgba(15, 23, 42, 0.56);
  border-color: rgba(94, 234, 212, 0.28);
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-section h1,
.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-section h2,
.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-section h3,
.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-section .text-slate-900 {
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-section .orm-text-secondary,
.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-form-subtitle,
.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-label,
.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-helper,
.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-footnote {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-promo-card {
  background: linear-gradient(140deg, #081321 0%, #12263e 100%) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.32), 0 6px 16px rgba(2, 6, 23, 0.16) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-promo-pill {
  background: rgba(20, 184, 166, 0.14) !important;
  border-color: rgba(94, 234, 212, 0.3) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-stat-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-form-card {
  background: rgba(8, 20, 34, 0.94) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.3), 0 6px 18px rgba(2, 6, 23, 0.16) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-form-head {
  border-bottom-color: rgba(148, 163, 184, 0.18) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-success-icon {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(13, 148, 136, 0.08)) !important;
  border-color: rgba(94, 234, 212, 0.3) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-input {
  background: #0b1728 !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-input:focus {
  background: #0f1d31 !important;
  border-color: rgba(45, 212, 191, 0.62) !important;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #contact-error {
  background: rgba(127, 29, 29, 0.22) !important;
  border-color: rgba(248, 113, 113, 0.3) !important;
  color: #fecaca !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-contact-submit {
  box-shadow: 0 14px 32px rgba(13, 148, 136, 0.26) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #consent {
  border-color: rgba(148, 163, 184, 0.32) !important;
  background-color: #0b1728 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #consent:checked {
  background-color: #0d9488 !important;
  border-color: #0d9488 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .solution-cluster-nav,
.theme-analytee-orm[data-color-scheme="dark"] .solution-cluster-nav .bg-slate-50,
.theme-analytee-orm[data-color-scheme="dark"] .solution-cluster-nav .bg-white {
  background: transparent !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .solution-cluster-nav .rounded-3xl,
.theme-analytee-orm[data-color-scheme="dark"] .solution-cluster-nav .rounded-2xl {
  background: rgba(8, 20, 34, 0.92) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .solution-cluster-nav .text-slate-900 {
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-section {
  background:
    radial-gradient(circle at 78% 28%, rgba(20, 184, 166, 0.14), transparent 18rem),
    radial-gradient(circle at 18% 18%, rgba(125, 211, 252, 0.1), transparent 22rem),
    linear-gradient(180deg, #06111f 0%, #081424 100%) !important;
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-section {
  background:
    radial-gradient(circle at 78% 28%, rgba(20, 184, 166, 0.14), transparent 18rem),
    radial-gradient(circle at 18% 18%, rgba(125, 211, 252, 0.1), transparent 22rem),
    linear-gradient(180deg, #06111f 0%, #081424 100%) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-section .bg-white,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-section .bg-slate-50,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-section .bg-teal-50 {
  background: rgba(8, 20, 34, 0.78) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-section .bg-white,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-section .bg-slate-50,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-section .bg-teal-50 {
  background: rgba(8, 20, 34, 0.78) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-dot-grid {
  opacity: 0.32;
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-dot-grid {
  opacity: 0.32;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-badge,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-title,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-subtitle,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-stat-divider,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-proof-label,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-proof-meta,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-proof-card,
.theme-analytee-orm[data-color-scheme="dark"] .orm-meta-text {
  color: var(--orm-text-on-dark) !important;
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-badge,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-title,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-subtitle,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-stat-divider,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-proof-label,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-proof-meta,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-proof-card,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-meta-text {
  color: var(--orm-text-on-dark) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-title {
  text-shadow: 0 10px 28px rgba(2, 6, 23, 0.28);
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-title {
  text-shadow: 0 10px 28px rgba(2, 6, 23, 0.28);
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-badge {
  border-color: rgba(94, 234, 212, 0.34);
  background: rgba(15, 23, 42, 0.62);
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-badge {
  border-color: rgba(94, 234, 212, 0.34);
  background: rgba(15, 23, 42, 0.62);
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-proof-card {
  background: rgba(8, 20, 34, 0.78);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.28);
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-proof-card {
  background: rgba(8, 20, 34, 0.78);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.28);
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-proof-meta,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-subtitle,
.theme-analytee-orm[data-color-scheme="dark"] .orm-meta-text {
  color: #d6e2f0 !important;
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-proof-meta,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-subtitle,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-meta-text {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-section .text-slate-900,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-section .text-slate-800 {
  color: var(--orm-text) !important;
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-section .text-slate-900,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-section .text-slate-800 {
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-section .text-slate-700,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-section .text-slate-600,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-section .text-slate-500 {
  color: #d6e2f0 !important;
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-section .text-slate-700,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-section .text-slate-600,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-section .text-slate-500 {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-cta-primary {
  box-shadow: 0 18px 40px rgba(13, 148, 136, 0.28);
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-cta-primary {
  box-shadow: 0 18px 40px rgba(13, 148, 136, 0.28);
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-actions .border-slate-200,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-actions a.border,
.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-actions a.text-slate-700 {
  background: rgba(8, 20, 34, 0.72) !important;
  border-color: rgba(148, 163, 184, 0.26) !important;
  color: var(--orm-text-on-dark) !important;
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-actions .border-slate-200,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-actions a.border,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-actions a.text-slate-700 {
  background: rgba(8, 20, 34, 0.72) !important;
  border-color: rgba(148, 163, 184, 0.26) !important;
  color: var(--orm-text-on-dark) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-actions a.border:hover {
  background: rgba(15, 23, 42, 0.88) !important;
  color: #ffffff !important;
}

html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-actions a.border:hover {
  background: rgba(15, 23, 42, 0.88) !important;
  color: #ffffff !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .bg-red-50,
.theme-analytee-orm[data-color-scheme="dark"] .bg-orange-50,
.theme-analytee-orm[data-color-scheme="dark"] .bg-amber-50,
.theme-analytee-orm[data-color-scheme="dark"] .bg-yellow-50 {
  background-color: rgba(8, 20, 34, 0.92) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .border-red-100,
.theme-analytee-orm[data-color-scheme="dark"] .border-orange-100,
.theme-analytee-orm[data-color-scheme="dark"] .border-amber-100,
.theme-analytee-orm[data-color-scheme="dark"] .border-yellow-100 {
  border-color: rgba(148, 163, 184, 0.18) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .bg-red-100,
.theme-analytee-orm[data-color-scheme="dark"] .bg-orange-100,
.theme-analytee-orm[data-color-scheme="dark"] .bg-amber-100,
.theme-analytee-orm[data-color-scheme="dark"] .bg-yellow-100 {
  background-color: rgba(255, 255, 255, 0.08) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .text-red-700,
.theme-analytee-orm[data-color-scheme="dark"] .text-orange-700,
.theme-analytee-orm[data-color-scheme="dark"] .text-amber-700,
.theme-analytee-orm[data-color-scheme="dark"] .text-yellow-800 {
  color: #fcd34d !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .text-red-500,
.theme-analytee-orm[data-color-scheme="dark"] .text-orange-500,
.theme-analytee-orm[data-color-scheme="dark"] .text-amber-500,
.theme-analytee-orm[data-color-scheme="dark"] .text-yellow-500 {
  color: #fde68a !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #how-it-works {
  background:
    radial-gradient(circle at 50% -12%, rgba(20, 184, 166, 0.12) 0%, transparent 34%),
    linear-gradient(180deg, #07111f 0%, #0a1628 100%) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #how-it-works .orm-section-intro h2,
.theme-analytee-orm[data-color-scheme="dark"] #how-it-works .orm-section-intro p,
.theme-analytee-orm[data-color-scheme="dark"] #how-it-works .orm-section-intro .orm-eyebrow {
  color: var(--orm-text-on-dark) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #how-it-works .orm-section-intro p {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-process-step {
  background: rgba(8, 20, 34, 0.92) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-process-step:hover {
  border-color: rgba(94, 234, 212, 0.28) !important;
  box-shadow: 0 22px 44px rgba(2, 6, 23, 0.3) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-process-step h3 {
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-process-step p {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-process-connector {
  opacity: 0.9;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-value-card,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-fit-box,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-advisor,
.theme-analytee-orm[data-color-scheme="dark"] .pricing-tab.bg-white,
.theme-analytee-orm[data-color-scheme="dark"] .inline-flex.items-center.gap-2.p-1\.5.bg-slate-100 {
  background: rgba(8, 20, 34, 0.92) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.22) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-value-card strong,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-advisor p.text-slate-900,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-card .text-slate-900 {
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-value-card span,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-fit-copy,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-meta,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-muted,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-advisor .orm-pricing-meta {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .pricing-tab {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .pricing-tab[aria-selected='true'] {
  color: #7dd3fc !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .pricing-tooltip-trigger {
  background: rgba(13, 148, 136, 0.18) !important;
  color: #99f6e4 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .pricing-tooltip-content,
.theme-analytee-orm[data-color-scheme="dark"] .pricing-tooltip-content .text-gray-800,
.theme-analytee-orm[data-color-scheme="dark"] .pricing-tooltip-content .text-gray-900 {
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(20, 184, 166, 0.09), transparent 22rem),
    linear-gradient(180deg, #06111f 0%, #091626 100%) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-card,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-note {
  border-color: rgba(148, 163, 184, 0.2) !important;
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.26) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-card {
  background: linear-gradient(180deg, rgba(8, 20, 34, 0.96) 0%, rgba(10, 24, 40, 0.94) 100%) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-card h1,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-card h2,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-card .text-slate-900,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-card .text-slate-800 {
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-card .text-slate-700,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-card .text-slate-600,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-note .text-slate-200,
.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-note .text-slate-300 {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-list-item {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-list-item strong {
  color: #ffffff !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-pricing-page-list-item-icon {
  background: rgba(45, 212, 191, 0.16) !important;
  color: #99f6e4 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .blog-cat-nav {
  background: rgba(8, 20, 34, 0.92);
  border-bottom-color: rgba(148, 163, 184, 0.16);
}

.theme-analytee-orm[data-color-scheme="dark"] .blog-cat-nav .bg-slate-100,
.theme-analytee-orm[data-color-scheme="dark"] .blog-cat-nav .bg-slate-200 {
  background: rgba(148, 163, 184, 0.12) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .blog-index-panel,
.theme-analytee-orm[data-color-scheme="dark"] .orm-empty-state-card,
.theme-analytee-orm[data-color-scheme="dark"] .blog-body-section .bg-white.rounded-2xl,
.theme-analytee-orm[data-color-scheme="dark"] .blog-index-link.is-active {
  background: rgba(8, 20, 34, 0.92) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .blog-index-panel__title,
.theme-analytee-orm[data-color-scheme="dark"] .blog-index-panel__meta,
.theme-analytee-orm[data-color-scheme="dark"] .blog-index-link,
.theme-analytee-orm[data-color-scheme="dark"] .blog-index-link__count,
.theme-analytee-orm[data-color-scheme="dark"] .orm-empty-state-card .orm-icon-muted {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .blog-index-link:hover,
.theme-analytee-orm[data-color-scheme="dark"] .blog-index-link:focus-visible {
  background: rgba(148, 163, 184, 0.12) !important;
  color: #ffffff !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .blog-index-link.is-active {
  color: #7dd3fc !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-empty-state-card p.text-slate-900,
.theme-analytee-orm[data-color-scheme="dark"] .blog-body-section h2.text-slate-900,
.theme-analytee-orm[data-color-scheme="dark"] .blog-body-section h3.text-slate-900 {
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-empty-state-card .border-slate-300,
.theme-analytee-orm[data-color-scheme="dark"] .blog-body-section .border-slate-300 {
  border-color: rgba(148, 163, 184, 0.24) !important;
}

/* ── Contrast system overrides ─────────────────────────────── */
.theme-analytee-orm main .text-slate-500,
.theme-analytee-orm main .text-gray-500 {
  color: var(--orm-text-secondary);
}
.theme-analytee-orm main .text-slate-400,
.theme-analytee-orm main .text-gray-400 {
  color: var(--orm-text-muted);
}
.theme-analytee-orm main .text-slate-300,
.theme-analytee-orm main .text-gray-300 {
  color: var(--orm-text-soft);
}
.theme-analytee-orm main .border-slate-100,
.theme-analytee-orm main .border-gray-100 {
  border-color: var(--orm-border-soft);
}
.theme-analytee-orm section.bg-teal-600 {
  background-color: #0f766e;
  color: var(--orm-text-on-dark);
}
.theme-analytee-orm section.bg-teal-600 .orm-pricing-on-dark-muted {
  color: #ffffff;
}
.theme-analytee-orm footer.bg-slate-950 {
  background-color: #020617;
  color: var(--orm-text-on-dark);
}
.theme-analytee-orm footer.bg-slate-950 .bg-slate-800 {
  background-color: rgba(15, 23, 42, 0.76);
}
.theme-analytee-orm footer.bg-slate-950 .border-slate-800,
.theme-analytee-orm footer.bg-slate-950 .border-slate-700 {
  border-color: rgba(148, 163, 184, 0.18);
}
.theme-analytee-orm :is(.orm-section--dark, .orm-prefooter-cta, .blog-cta-main, .blog-cta-sidebar, .orm-contact-promo-card, .blog-index-hero, footer.bg-slate-950) .text-slate-300 {
  color: var(--orm-text-on-dark-secondary);
}
.theme-analytee-orm :is(.orm-section--dark, .orm-prefooter-cta, .blog-cta-main, .blog-cta-sidebar, .orm-contact-promo-card, .blog-index-hero, footer.bg-slate-950) .text-slate-400 {
  color: var(--orm-text-on-dark-muted);
}
.theme-analytee-orm :is(.orm-section--dark, .orm-prefooter-cta, .blog-cta-main, .blog-cta-sidebar, .orm-contact-promo-card, .blog-index-hero, footer.bg-slate-950) .text-slate-500 {
  color: var(--orm-text-on-dark-soft);
}
.theme-analytee-orm :is(.orm-section--dark, .orm-prefooter-cta, .blog-cta-main, .blog-cta-sidebar, .orm-contact-promo-card, .blog-index-hero, footer.bg-slate-950) .text-teal-100,
.theme-analytee-orm :is(.orm-section--dark, .orm-prefooter-cta, .blog-cta-main, .blog-cta-sidebar, .orm-contact-promo-card, .blog-index-hero, footer.bg-slate-950) .text-teal-200 {
  color: #ccfbf1;
}
.theme-analytee-orm :is(.orm-section--dark, .orm-prefooter-cta, .blog-cta-main, .blog-cta-sidebar, .orm-contact-promo-card, .blog-index-hero, footer.bg-slate-950) .text-teal-300,
.theme-analytee-orm :is(.orm-section--dark, .orm-prefooter-cta, .blog-cta-main, .blog-cta-sidebar, .orm-contact-promo-card, .blog-index-hero, footer.bg-slate-950) .text-teal-400 {
  color: #99f6e4;
}

/* ── Shared page shell primitives ──────────────────────────── */
.orm-page-shell {
  position: relative;
}
.orm-page-shell--marketing {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.42) 0%, rgba(255, 255, 255, 0) 18rem);
}
.orm-page-shell--legal {
  padding-block: clamp(4.5rem, 8vw, 6.5rem);
}
.orm-legal-shell {
  padding-inline: 1rem;
}
.orm-legal-card {
  overflow-wrap: anywhere;
}
.orm-page-intro,
.orm-section-intro {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.orm-section-intro--compact {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.orm-section {
  padding-block: var(--orm-space-section);
}
.orm-section--tight {
  padding-block: var(--orm-space-section-tight);
}
.orm-section--page {
  padding-block: clamp(4.5rem, 7vw, 6rem);
}
.orm-section--band {
  padding-block: clamp(2.5rem, 5vw, 3.25rem);
}
.orm-section--hero {
  padding-block: 0;
}
.orm-section--dark {
  color: #ffffff;
}
.orm-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  background: #f0fdfa;
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.orm-eyebrow--muted {
  border-color: var(--orm-border-soft);
  background: var(--orm-surface-subtle);
  color: var(--orm-eyebrow-soft);
}
.orm-eyebrow--surface {
  border-color: var(--orm-border-soft);
  background: #ffffff;
  color: var(--orm-text-secondary);
}
.orm-eyebrow--dark {
  border-color: rgba(94, 234, 212, 0.36);
  background: rgba(20, 184, 166, 0.16);
  color: #ccfbf1;
}
.orm-text-primary {
  color: var(--orm-text);
}
.orm-text-secondary {
  color: var(--orm-text-secondary);
}
.orm-text-muted {
  color: var(--orm-text-muted);
}
.orm-text-subtle {
  color: var(--orm-text-soft);
}
.orm-text-on-dark {
  color: var(--orm-text-on-dark);
}
.orm-dark-muted {
  color: var(--orm-text-on-dark-muted);
}
.orm-dark-soft {
  color: var(--orm-text-on-dark-soft);
}
.orm-meta-text {
  color: var(--orm-text-muted);
  font-weight: 500;
}
.orm-eyebrow-contrast {
  color: var(--orm-text-secondary);
}
.orm-icon-muted {
  color: var(--orm-text-muted);
}
.orm-form-help {
  color: var(--orm-text-secondary);
}
.orm-form-help::placeholder,
.orm-contact-input::placeholder {
  color: var(--orm-text-muted);
  opacity: 1;
}
.orm-pricing-meta {
  color: var(--orm-text-secondary);
}
.orm-pricing-muted {
  color: var(--orm-text-muted);
}
.orm-pricing-on-dark {
  color: var(--orm-text-on-dark-secondary);
}
.orm-pricing-on-dark-muted {
  color: #d1fae5;
}
.orm-dark-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.orm-dark-card:hover {
  border-color: rgba(45, 212, 191, 0.45);
}
.orm-dark-card-accent {
  color: #99f6e4;
}
.orm-dark-card-copy {
  color: var(--orm-text-on-dark-secondary);
}
.orm-dark-card-list {
  color: var(--orm-text-on-dark-muted);
}
.orm-dark-card-link {
  color: #7dd3fc;
}
.orm-dark-card-link:hover {
  color: #bae6fd;
}
.orm-dark-card-icon {
  color: #99f6e4;
}
.orm-dark-card-surface {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(45, 212, 191, 0.26);
}
.orm-footer-link-muted {
  color: var(--orm-text-on-dark-muted);
}
.orm-footer-link-muted:hover {
  color: #ffffff;
}
.orm-surface-meta {
  color: var(--orm-text-secondary);
}

/* ── Prose overrides for blog content ─────────────────────── */
.theme-analytee-orm .prose h1,
.theme-analytee-orm .prose h2,
.theme-analytee-orm .prose h3 {
  color: #0f172a;
  font-weight: 700;
}
.theme-analytee-orm .prose a {
  color: var(--orm-teal);
}
.theme-analytee-orm .prose a:hover {
  color: var(--orm-teal-dark);
}

/* ── Header sticky shadow ──────────────────────────────────── */
.theme-analytee-orm #orm-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media (min-width: 1024px) {
  .theme-analytee-orm #orm-header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

/* ── Hero dashboard panel gradient ────────────────────────── */
.orm-hero-panel {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* ── Teal accent button ────────────────────────────────────── */
.orm-btn-primary {
  background: var(--orm-teal);
  color: #ffffff;
  border-radius: var(--orm-radius);
  font-weight: 600;
  transition: background 0.2s ease;
}
.orm-btn-primary:hover {
  background: var(--orm-teal-dark);
}

/* ── Section badge ─────────────────────────────────────────── */
.orm-badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
}

/* ── Feature card hover ring ───────────────────────────────── */
.theme-analytee-orm .feature-card:hover {
  box-shadow: 0 0 0 2px var(--orm-teal-light), 0 8px 24px rgba(13,148,136,0.1);
}

/* ── Animated pulse dot ────────────────────────────────────── */
@keyframes orm-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.orm-pulse {
  animation: orm-pulse 2s ease-in-out infinite;
}

/* ── Cookie bar override ────────────────────────────────────── */
.theme-analytee-orm .cookie-policy-bar {
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}
.orm-cookie-bar-layer {
  z-index: 1100;
}
.theme-analytee-orm .cookie-policy-bar[hidden] {
  display: none !important;
}
.orm-cookie-panel {
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
}
.orm-cookie-accept {
  background: #0d9488;
}

/* ── Scrollbar (webkit) ────────────────────────────────────── */
.theme-analytee-orm ::-webkit-scrollbar {
  width: 6px;
}
.theme-analytee-orm ::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.theme-analytee-orm ::-webkit-scrollbar-thumb {
  background: var(--orm-teal);
  border-radius: 999px;
}

/* ── KPI metric number ─────────────────────────────────────── */
.orm-kpi-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}
.orm-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}
.orm-kpi-card {
  padding: clamp(1.25rem, 2.2vw, 1.5rem);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 78, 74, 0.24);
}

/* ── Dashboard fake panel ──────────────────────────────────── */
.orm-dashboard-badge {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.7rem;
  color: var(--orm-text-secondary);
}

/* ── Header nav — desktop visible, mobile hidden ──────────── */
/* Replaces: hidden lg:flex (lg:flex not in Nova bundle)       */
.orm-header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .orm-header-nav { display: flex; }
}

/* ── Header CTAs — desktop only ───────────────────────────── */
/* Replaces: hidden lg:inline-block (not in Nova bundle)       */
.orm-header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .orm-header-cta { display: inline-block; }
}

.orm-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--orm-text-secondary);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.orm-theme-toggle:hover {
  color: var(--orm-text);
  border-color: rgba(var(--orm-teal-rgb), 0.3);
  transform: translateY(-1px);
}
.orm-theme-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.orm-theme-toggle__icon--moon {
  display: none;
}
.orm-theme-toggle__label {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}
.theme-analytee-orm[data-color-scheme="dark"] .orm-theme-toggle__icon--sun {
  display: none;
}
.theme-analytee-orm[data-color-scheme="dark"] .orm-theme-toggle__icon--moon {
  display: inline-flex;
}
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-theme-toggle__icon--sun {
  display: none;
}
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-theme-toggle__icon--moon {
  display: inline-flex;
}
.orm-theme-toggle--mobile {
  justify-content: flex-start;
  width: 100%;
}

/* ── Mobile-only elements ─────────────────────────────────── */
/* Replaces: lg:hidden (safe—IS in Nova bundle, kept as-is)    */
.orm-mobile-only {
  display: block;
}
@media (min-width: 1024px) {
  .orm-mobile-only { display: none !important; }
}

/* ── Testimonial card subtle gradient ──────────────────────── */
.theme-analytee-orm .testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
}

/* ── Focus visible for accessibility ──────────────────────── */
.theme-analytee-orm *:focus-visible {
  outline: 2px solid var(--orm-teal);
  outline-offset: 2px;
}
.orm-touch-target {
  min-width: 2.75rem;
  min-height: 2.75rem;
  touch-action: manipulation;
}

.orm-auth-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 1.125rem;
  margin: 0;
  border-radius: 0.35rem;
  border: 1.5px solid #94a3b8;
  background: #ffffff;
  display: inline-grid;
  place-content: center;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  cursor: pointer;
}
.orm-auth-checkbox::after {
  content: "";
  width: 0.35rem;
  height: 0.6rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.16s ease;
}
.orm-auth-checkbox:hover {
  border-color: var(--orm-teal);
}
.orm-auth-checkbox:checked {
  background: linear-gradient(135deg, var(--orm-teal) 0%, var(--orm-teal-accent) 100%);
  border-color: var(--orm-teal);
  box-shadow: 0 0 0 4px rgba(var(--orm-teal-rgb), 0.12);
}
.orm-auth-checkbox:checked::after {
  transform: rotate(45deg) scale(1);
}
.orm-auth-checkbox:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--orm-teal-rgb), 0.16);
}

.orm-auth-social-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.875rem;
  width: 100%;
  min-height: 3.75rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid #cfd8e3;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #0f172a;
  font-weight: 600;
  text-align: left;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.orm-auth-social-button:hover {
  border-color: rgba(var(--orm-teal-rgb), 0.48);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}
.orm-auth-social-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.orm-auth-social-badge svg {
  width: 1.22rem;
  height: 1.22rem;
  display: block;
}
.orm-auth-social-badge--google {
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
}
.orm-auth-social-badge--facebook {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16) 0%, rgba(59, 130, 246, 0.08) 100%);
  color: #2563eb;
}
.orm-auth-social-badge--x {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.12) 0%, rgba(51, 65, 85, 0.16) 100%);
  color: #0f172a;
}
.orm-auth-card {
  position: relative;
  overflow: hidden;
}
.orm-auth-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #14b8a6 0%, #0ea5e9 55%, #8b5cf6 100%);
}
.orm-auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.75rem;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--orm-teal) 0%, #0f766e 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 36px rgba(var(--orm-teal-rgb), 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.orm-auth-submit:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 22px 42px rgba(var(--orm-teal-rgb), 0.3);
}
.orm-auth-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--orm-teal-rgb), 0.18), 0 20px 40px rgba(var(--orm-teal-rgb), 0.24);
}
.orm-auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0 1rem;
  color: var(--orm-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}
.orm-auth-divider::before,
.orm-auth-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(203, 213, 225, 0.1) 0%, rgba(203, 213, 225, 1) 50%, rgba(203, 213, 225, 0.1) 100%);
}

.orm-full-height-page {
  min-height: 100vh;
  min-height: 100dvh;
}

/* ════════════════════════════════════════════════════════════
   LAYOUT UTILITIES — independent of Nova's Tailwind bundle
   These replace Tailwind responsive classes not compiled in Nova
   ════════════════════════════════════════════════════════════ */

/* ── Hero two-column grid ─────────────────────────────────── */
.orm-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}
.orm-hero-left {
  padding: var(--orm-space-section-tight) 0 clamp(2.5rem, 6vw, 4rem);
}
.orm-hero-right {
  padding: 0 0 clamp(2rem, 4vw, 3rem);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.orm-hero-section {
  padding-block-start: 4rem;
}
.orm-hero-shell {
  padding-block-end: 0;
}
.orm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0.375rem 0.75rem;
  background: #f0fdfa;
  border: 1px solid #5eead4;
  border-radius: 999px;
}
.orm-hero-bg {
  background: radial-gradient(ellipse at 85% 20%, rgba(153,246,228,0.45) 0%, transparent 65%), linear-gradient(135deg, #f0fdfa 0%, #ffffff 45%, #f8fafc 100%);
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-hero-bg,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-hero-bg {
  background:
    radial-gradient(ellipse at 82% 18%, rgba(45, 212, 191, 0.16) 0%, transparent 40%),
    radial-gradient(ellipse at 18% 14%, rgba(56, 189, 248, 0.12) 0%, transparent 34%),
    linear-gradient(135deg, #07111f 0%, #091424 46%, #0b1828 100%) !important;
}
.orm-hero-dot-grid {
  background-image: radial-gradient(circle, rgba(13,148,136,0.82) 1.25px, transparent 1.25px);
  background-size: 28px 28px;
  opacity: 0.15;
}

.theme-analytee-orm[data-color-scheme="dark"] .orm-gradient-text,
html[data-color-scheme="dark"] body.theme-analytee-orm .orm-gradient-text {
  color: #2dd4bf;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.orm-hero-badge-dot {
  animation: orm-hero-pulse 2s ease-in-out infinite;
}
.orm-hero-cta-primary {
  background: #0d9488;
  box-shadow: 0 4px 18px rgba(13,148,136,0.25);
}
.orm-hero-cta-primary:hover,
.orm-hero-cta-primary:focus-visible {
  background: #0f766e;
}
.orm-hero-title {
  margin-bottom: 1.5rem;
  font-size: var(--orm-text-display);
  line-height: 1.08;
  text-wrap: balance;
}
.orm-hero-subtitle {
  max-width: 34rem;
  margin-bottom: 2.25rem;
  font-size: clamp(1rem, 0.94rem + 0.35vw, 1.125rem);
  line-height: 1.75;
}
.orm-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  margin-bottom: 2.25rem;
}
.orm-hero-stat-divider {
  width: 1px;
  height: 2rem;
  background: #e2e8f0;
}
.orm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.orm-hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 42rem;
}
.orm-hero-proof-card {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.orm-hero-proof-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--orm-text);
  font-size: 0.84rem;
  font-weight: 700;
}
.orm-hero-proof-meta {
  color: var(--orm-text-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}
.orm-hero-media {
  width: min(100%, 34rem);
  margin-inline: auto;
}
.orm-hero-photo-wrap {
  position: relative;
  width: min(100%, clamp(18rem, 42vw, 31rem));
  margin-inline: auto;
}
.orm-hero-photo-glow {
  position: absolute;
  inset: 6%;
  background: radial-gradient(ellipse at 60% 30%, rgba(153,246,228,0.55) 0%, transparent 65%);
  filter: blur(32px);
  border-radius: 50%;
}
.orm-hero-ring {
  position: absolute;
  inset-inline-end: clamp(-0.875rem, -1vw, -0.5rem);
  border-radius: 999px;
}
.orm-hero-ring-lg {
  top: clamp(-0.875rem, -1vw, -0.5rem);
  width: clamp(3.75rem, 10vw, 5rem);
  aspect-ratio: 1;
  border: 3px solid rgba(13,148,136,0.18);
  background: transparent;
}
.orm-hero-ring-sm {
  top: clamp(-0.375rem, -0.4vw, -0.125rem);
  inset-inline-end: clamp(-0.375rem, -0.4vw, -0.125rem);
  width: clamp(2.75rem, 7vw, 3.5rem);
  aspect-ratio: 1;
  background: rgba(13,148,136,0.08);
}
.orm-hero-photo-frame {
  position: relative;
  overflow: clip;
  border-radius: 2rem 2rem 1.25rem 1.25rem;
  box-shadow: 0 24px 60px rgba(15,23,42,0.14), 0 4px 16px rgba(13,148,136,0.08);
  border: 1.5px solid rgba(255,255,255,0.85);
  aspect-ratio: 3 / 4;
}
.orm-hero-photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}
.orm-hero-photo-scrim {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(10,15,30,0.62) 0%, rgba(10,15,30,0.12) 60%, transparent 100%);
}
.orm-hero-floating-card {
  position: absolute;
  inset-block-end: clamp(0.875rem, 2vw, 1.25rem);
  z-index: 30;
}
.orm-hero-floating-card-left {
  inset-inline-start: clamp(0.875rem, 2vw, 1.25rem);
  inline-size: min(68%, 16rem);
}
.orm-hero-floating-card-right {
  inset-inline-end: clamp(0.875rem, 2vw, 1.25rem);
}
.orm-hero-info-card {
  padding: 0.625rem 0.875rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 8px 24px rgba(15,23,42,0.14);
}
.orm-hero-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}
.orm-hero-info-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.orm-hero-info-value {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.orm-hero-info-meta {
  margin-top: 2px;
  font-size: 0.7rem;
  color: #475569;
}
.orm-hero-reputation-card {
  min-width: 4rem;
  padding: 0.625rem 0.875rem;
  text-align: center;
  background: #0f766e;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15,118,110,0.35);
}
.orm-hero-reputation-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.orm-hero-reputation-label {
  margin-top: 2px;
  font-size: 0.62rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.orm-hero-insight-feed {
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-start: clamp(-1.25rem, -1.5vw, -0.5rem);
  z-index: 20;
}
.orm-hero-insight-feed-card {
  width: min(14rem, 58vw);
  padding: 0.75rem 0.875rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 12px 32px rgba(15,23,42,0.12);
}
.orm-hero-feed-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orm-hero-feed-icon-warm {
  background: #fef3c7;
}
.orm-hero-feed-icon-cool {
  background: #d1fae5;
}
.orm-hero-feed-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0f172a;
}
.orm-hero-feed-subtitle {
  font-size: 0.62rem;
  color: #475569;
}
.orm-hero-feed-chip {
  margin-inline-start: auto;
  padding: 2px 7px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #b91c1c;
  background: rgba(254, 226, 226, 0.92);
  border-radius: 999px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .orm-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  }
  .orm-hero-left {
    padding: clamp(4rem, 7vw, 5rem) 0 clamp(4rem, 6vw, 4.5rem);
  }
  .orm-hero-right {
    padding: clamp(4rem, 7vw, 5rem) 0 0;
    justify-content: flex-end;
  }
  .orm-hero-media {
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
  .orm-trust-bar {
    gap: 2.5rem 3.75rem;
  }
}

/* ── Hero pulse dot animation (moved from home.blade.php inline style) ── */
@keyframes orm-hero-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(0.88); }
}

@media (max-width: 639px) {
    .orm-hero-section {
      padding-block-start: 2.75rem;
    }
    .orm-hero-left {
      padding-inline: 0;
      padding-bottom: 1.5rem;
    }
    .orm-hero-right {
      padding-inline: 0;
    }
    .orm-hero-badge {
      width: 100%;
      justify-content: center;
      margin-bottom: 1.25rem;
      text-align: center;
    }
    .orm-hero-title {
      margin-bottom: 1rem;
      font-size: clamp(2.35rem, 9vw, 3rem);
      line-height: 1.04;
    }
    .orm-hero-subtitle {
      margin-bottom: 1.5rem;
      font-size: 1rem;
      line-height: 1.65;
    }
    .orm-hero-stats {
      margin-bottom: 1.5rem;
      gap: 0.75rem 1rem;
      justify-content: space-between;
    }
    .orm-hero-stat-divider {
      display: none;
    }
    .orm-hero-actions {
      flex-direction: column;
      align-items: stretch;
      margin-bottom: 1rem;
    }
    .orm-hero-actions a {
      width: 100%;
      justify-content: center;
      text-align: center;
    }
    .orm-hero-proof-strip {
      grid-template-columns: 1fr;
    }
    .orm-hero-photo-wrap {
      width: min(100%, 24rem);
    }
    .orm-hero-floating-card-left {
      inline-size: min(63%, 13rem);
    }
    .orm-hero-insight-feed {
      display: none !important;
    }
    .orm-pricing-advisor-actions,
    .orm-empty-state-actions {
      flex-direction: column;
    }
    .orm-pricing-advisor-actions a,
    .orm-empty-state-actions a {
      width: 100%;
      justify-content: center;
      text-align: center;
    }
}

/* ── Generic 3-column grid ────────────────────────────────── */
/* Used in: Solutions, How-it-works, Features, Pricing        */
.orm-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.orm-grid-3-wide {
  gap: 2rem;
}
.orm-grid-3-tight {
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .orm-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .orm-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ════════════════════════════════════════════════════════════
   DESIGN ENHANCEMENTS v2
   ════════════════════════════════════════════════════════════ */

/* ── Scroll Reveal Animations ─────────────────────────────── */
/*
 * IMPORTANT: reveal-left and reveal-right intentionally use translateY,
 * NOT translateX. Most sections use overflow:hidden (to clip decorative
 * background blobs). A horizontal translate would be clipped by the
 * section boundary before JS adds .is-visible, making content invisible
 * on mobile. Using translateY avoids horizontal clipping entirely.
 */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up    { transform: translateY(24px); }
.reveal-left  { transform: translateY(24px); }   /* was translateX(-32px) — caused clip */
.reveal-right { transform: translateY(24px); }   /* was translateX(32px)  — caused clip */
.reveal-fade  { transform: none; }

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-fade.is-visible {
  opacity: 1;
  transform: none;
}

/* Safety net: if JS never fires (slow load, error, no-JS),
   reveal elements become visible after a short CSS animation delay.  */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  animation: orm-reveal-fallback 0s 2.5s forwards;
}
@keyframes orm-reveal-fallback {
  to { opacity: 1; transform: none; }
}
/* Once JS adds .is-visible, override the animation (transition takes over) */
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-fade.is-visible {
  animation: none;
}

/* Stagger for direct children of .reveal-stagger */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.27s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.36s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.54s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.63s; }
.reveal-stagger > *:nth-child(9) { transition-delay: 0.72s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right, .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* ── CTA Button Shine Sweep ───────────────────────────────── */
.orm-btn-shine {
  position: relative;
  overflow: hidden;
}
.orm-btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
}
.orm-btn-shine:hover::after {
  left: 140%;
  transition: left 0.6s ease;
}
.orm-rating-stars {
  color: #f59e0b;
  letter-spacing: 0.05em;
}

/* ── Gradient Text (teal) ─────────────────────────────────── */
.orm-gradient-text {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 55%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero animated floating orbs ─────────────────────────── */
@keyframes orm-orb-drift {
  0%, 100% { transform: translateY(0) scale(1); }
  45%       { transform: translateY(-18px) scale(1.05); }
}
@keyframes orm-orb-drift-2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  35%       { transform: translateY(-12px) rotate(4deg); }
  70%       { transform: translateY(-6px) rotate(-2deg); }
}
.orm-orb-float   { animation: orm-orb-drift   7s ease-in-out infinite; }
.orm-orb-float-2 { animation: orm-orb-drift-2 9s ease-in-out infinite; }

/* ── Testimonial large serif quote mark ──────────────────── */
.orm-quote-card {
  position: relative;
  overflow: hidden;
}
.orm-quote-card::before {
  content: '\201C';
  position: absolute;
  top: -0.6rem;
  left: 0.9rem;
  font-size: 6rem;
  line-height: 1;
  color: #f1f5f9;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.orm-quote-card > * {
  position: relative;
  z-index: 1;
}

/* ── Trust bar fade-edge masks ────────────────────────────── */
.orm-trust-bar {
  position: relative;
  opacity: 0.92 !important;
}
.orm-trust-bar::before,
.orm-trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}
.orm-trust-bar::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}
.orm-trust-bar::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

/* ── Card hover lift ──────────────────────────────────────── */
.orm-card-hover {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.orm-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(13, 148, 136, 0.13);
}

/* ── Contact form inputs ──────────────────────────────────── */
.orm-contact-shell {
  padding-block: var(--orm-space-section);
}
.orm-contact-section {
  background: #f1f5f9;
}
.orm-contact-texture {
  background-image: radial-gradient(circle, rgba(13,148,136,0.45) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.065;
}
.orm-contact-top-accent {
  background: linear-gradient(90deg, #0d9488 0%, #14b8a6 50%, #06b6d4 100%);
}
.orm-contact-badge {
  background: rgba(13,148,136,0.08);
  border: 1px solid rgba(13,148,136,0.2);
}
.orm-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.orm-contact-promo-card {
  background: linear-gradient(140deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 20px 55px rgba(15,23,42,0.22), 0 2px 10px rgba(15,23,42,0.08);
  border: 1px solid rgba(148,163,184,0.18);
}
.orm-contact-promo-inner {
  padding: 2.15rem 1.9rem 1.9rem;
}
.orm-contact-promo-pill {
  background: rgba(20,184,166,0.11);
  border: 1px solid rgba(20,184,166,0.28);
}
.orm-contact-promo-copy {
  color: var(--orm-text-on-dark-muted);
}
.orm-contact-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.orm-contact-stat-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
}
.orm-contact-stat-label {
  color: #cbd5e1;
}
.orm-contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.orm-contact-form-card {
  box-shadow: 0 18px 48px rgba(15,23,42,0.12), 0 2px 8px rgba(15,23,42,0.05);
  border: 1px solid rgba(226,232,240,0.95);
}
.orm-contact-form-accent {
  height: 4px;
  background: linear-gradient(90deg, #0d9488 0%, #14b8a6 55%, #06b6d4 100%);
}
.orm-contact-form-head {
  border-bottom: 1px solid var(--orm-border-soft);
}
.orm-contact-success-icon {
  background: linear-gradient(135deg, #ccfbf1, #f0fdfa);
  border: 2px solid #99f6e4;
}
.orm-contact-form-icon {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}
.orm-contact-form-subtitle {
  color: var(--orm-text-secondary);
}
.orm-contact-label,
.orm-contact-helper {
  color: var(--orm-text-secondary);
}
.orm-contact-input {
  background: #f8fafc;
  border-color: #e2e8f0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.orm-contact-error {
  border: 1px solid #fecaca;
}
.orm-contact-footnote {
  color: var(--orm-text-secondary);
}
.orm-contact-submit {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  box-shadow: 0 4px 18px rgba(13,148,136,0.3);
}
.orm-contact-submit:hover,
.orm-contact-submit:focus-visible {
  filter: brightness(1.07);
}
.orm-contact-input:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.14);
  background: #ffffff;
}
@media (max-width: 767px) {
  .orm-contact-form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1023px) {
  .orm-contact-grid {
    gap: 1.75rem;
  }
}

.orm-language-menu {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: calc(100% + 0.5rem);
}
.orm-language-menu-layer {
  z-index: 1100;
  pointer-events: auto;
}
.orm-language-menu[hidden] {
  display: none !important;
}
.orm-language-option {
  min-height: 2.75rem;
  touch-action: manipulation;
}
.orm-language-option[aria-current="true"] {
  cursor: default;
}
.theme-analytee-orm #orm-mobile-drawer {
  pointer-events: none;
}
.theme-analytee-orm #orm-mobile-drawer.is-open {
  pointer-events: auto;
}
.theme-analytee-orm #orm-mobile-drawer[hidden] {
  display: none !important;
  pointer-events: none;
}
.theme-analytee-orm #orm-mobile-backdrop {
  pointer-events: auto;
}
.orm-mobile-close,
.pricing-tooltip-trigger {
  min-width: 2.75rem;
  min-height: 2.75rem;
}
.orm-empty-state-card {
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
  padding: clamp(2rem, 4vw, 3rem);
}
.orm-empty-state-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.orm-solutions-glow {
  background: radial-gradient(circle at 10% 50%, #14b8a6, transparent 40%);
}
.theme-analytee-orm #solutions {
  background-color: #06131f;
  background-image:
    radial-gradient(circle at 14% 38%, rgba(20, 184, 166, 0.14) 0%, rgba(20, 184, 166, 0.04) 20%, transparent 40%),
    linear-gradient(135deg, #08131f 0%, #0b1725 52%, #0f1f31 100%);
  color: var(--orm-text-on-dark);
  isolation: isolate;
}
.theme-analytee-orm #solutions .orm-solutions-glow {
  inset: auto;
  top: 7%;
  left: -12%;
  width: min(44rem, 62vw);
  height: min(44rem, 62vw);
  opacity: 0.22 !important;
  filter: blur(78px);
  background:
    radial-gradient(circle at 38% 42%, rgba(45, 212, 191, 0.92) 0%, rgba(45, 212, 191, 0.48) 24%, rgba(45, 212, 191, 0.14) 46%, transparent 72%);
}
.theme-analytee-orm #solutions .orm-section-intro {
  position: relative;
  z-index: 1;
}
.theme-analytee-orm #solutions .orm-dark-card {
  background: rgba(10, 24, 40, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow:
    0 18px 36px rgba(2, 6, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.theme-analytee-orm #solutions .orm-dark-card:hover {
  border-color: rgba(94, 234, 212, 0.44);
  box-shadow:
    0 20px 42px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.theme-analytee-orm #solutions .orm-dark-card-copy {
  color: #e5eef7;
}
.theme-analytee-orm #solutions .orm-dark-card-list {
  color: #d7e5f2;
}
.theme-analytee-orm #solutions .orm-dark-card-link {
  color: #7dd3fc;
}
.theme-analytee-orm #solutions .orm-dark-card-link:hover,
.theme-analytee-orm #solutions .orm-dark-card-link:focus-visible {
  color: #dbeafe;
}
.theme-analytee-orm #solutions .orm-dark-card-icon,
.theme-analytee-orm #solutions .orm-dark-card-accent {
  color: #99f6e4;
}
.theme-analytee-orm #solutions .bg-blue-500\/20,
.theme-analytee-orm #solutions .bg-violet-500\/20 {
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.theme-analytee-orm #solutions .text-blue-400 {
  color: #93c5fd;
}
.theme-analytee-orm #solutions .text-violet-400 {
  color: #c4b5fd;
}
.theme-analytee-orm #solutions .orm-dark-muted {
  color: #dbe7f3;
}
.theme-analytee-orm #how-it-works {
  position: relative;
  background:
    radial-gradient(circle at 50% -18%, rgba(20, 184, 166, 0.08) 0%, transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.orm-process-connector {
  background: linear-gradient(90deg, transparent 0%, rgba(45, 212, 191, 0.2) 18%, rgba(13, 148, 136, 0.55) 50%, rgba(96, 165, 250, 0.2) 82%, transparent 100%);
}
.orm-process-step {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}
.orm-process-step:hover {
  border-color: rgba(148, 163, 184, 0.42);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}
.orm-process-icon {
  border-width: 2px;
  border-style: solid;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.orm-process-icon--teal {
  background: #f0fdfa;
  border-color: #99f6e4;
}
.orm-process-icon--blue {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.orm-process-icon--violet {
  background: #f5f3ff;
  border-color: #ddd6fe;
}
.orm-process-icon-glyph--teal {
  color: #0f766e;
}
.orm-process-icon-glyph--blue {
  color: #1d4ed8;
}
.orm-process-icon-glyph--violet {
  color: #6d28d9;
}
.orm-process-kicker--teal {
  color: #0f766e;
}
.orm-process-kicker--blue {
  color: #1d4ed8;
}
.orm-process-kicker--violet {
  color: #6d28d9;
}
.orm-process-cta {
  background: #0f766e;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.22);
}
.orm-process-cta:hover,
.orm-process-cta:focus-visible {
  background: #115e59;
  box-shadow: 0 14px 32px rgba(17, 94, 89, 0.28);
}
.orm-feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.92) 100%);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}
.orm-feature-card:hover {
  border-color: rgba(45, 212, 191, 0.28);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
}
.orm-feature-icon {
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.orm-feature-icon--teal {
  background: #f0fdfa;
}
.orm-feature-icon--blue {
  background: #eff6ff;
}
.orm-feature-icon--violet {
  background: #f5f3ff;
}
.orm-feature-icon--emerald {
  background: #ecfdf5;
}
.orm-feature-icon--amber {
  background: #fffbeb;
}
.orm-feature-icon--cyan {
  background: #ecfeff;
}
.orm-feature-icon--pink {
  background: #fdf2f8;
}
.orm-feature-icon--indigo {
  background: #eef2ff;
}
.orm-feature-icon--slate {
  background: #f1f5f9;
}
.orm-usecase-card {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}
.orm-usecase-card:hover {
  border-color: rgba(148, 163, 184, 0.36);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}
.orm-usecase-icon {
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}
.orm-usecase-icon--orange {
  background: #ffedd5;
}
.orm-usecase-icon--blue {
  background: #dbeafe;
}
.orm-usecase-icon--teal {
  background: #ccfbf1;
}
.orm-usecase-icon--violet {
  background: #ede9fe;
}
.orm-usecase-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid transparent;
}
.orm-usecase-pill--orange {
  color: #c2410c;
  background: #fff7ed;
  border-color: #fed7aa;
}
.orm-usecase-pill--blue {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
}
.orm-usecase-pill--teal {
  color: #0f766e;
  background: #f0fdfa;
  border-color: #99f6e4;
}
.orm-usecase-pill--violet {
  color: #6d28d9;
  background: #f5f3ff;
  border-color: #ddd6fe;
}
.orm-testimonial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.96) 100%);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
}
.orm-testimonial-card:hover {
  border-color: rgba(148, 163, 184, 0.34);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
}
.orm-resource-card {
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}
.orm-resource-card:hover {
  border-color: rgba(45, 212, 191, 0.22);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}
.orm-resource-pill {
  border: 1px solid rgba(153, 246, 228, 0.8);
}
.orm-prefooter-cta {
  overflow: hidden;
  background-color: #0f172a;
  background-image: linear-gradient(135deg, #0f172a 0%, #111827 52%, #0b1220 100%);
  background-repeat: no-repeat;
}
.orm-prefooter-cta h2,
.orm-prefooter-cta .text-white {
  color: #ffffff;
}
.orm-prefooter-cta .text-slate-300 {
  color: var(--orm-text-on-dark-secondary);
}
.orm-prefooter-cta .text-slate-200 {
  color: var(--orm-text-on-dark);
}
.orm-prefooter-cta .text-slate-400 {
  color: var(--orm-text-on-dark-muted);
}
.orm-prefooter-cta-glow {
  background-image: radial-gradient(circle at 20% 50%, #14b8a6 0%, transparent 50%), radial-gradient(circle at 80% 20%, #0ea5e9 0%, transparent 50%);
}
.orm-footer-shell {
  padding-block: clamp(3.5rem, 6vw, 4.5rem);
}
.orm-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: start;
}
.orm-footer-link {
  color: #e2e8f0;
}
.orm-footer-link:hover,
.orm-footer-link:focus-visible {
  color: #ccfbf1;
}
.orm-footer-copy {
  color: #cbd5e1;
}
.orm-footer-copy-muted {
  color: #94a3b8;
}
.faq-trigger {
  cursor: pointer;
}
.faq-item {
  box-shadow: none;
}
.faq-item.is-open {
  border-color: #14b8a6;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.faq-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.theme-analytee-orm[data-color-scheme="dark"] #faqs {
  background:
    radial-gradient(circle at 50% -12%, rgba(20, 184, 166, 0.08) 0%, transparent 28rem),
    linear-gradient(180deg, #06111f 0%, #081424 100%) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #faqs .orm-section-intro h1,
.theme-analytee-orm[data-color-scheme="dark"] #faqs .orm-section-intro h2,
.theme-analytee-orm[data-color-scheme="dark"] #faqs .orm-section-intro .text-slate-900,
.theme-analytee-orm[data-color-scheme="dark"] #faqs .faq-item .text-slate-900 {
  color: var(--orm-text) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #faqs .orm-section-intro p,
.theme-analytee-orm[data-color-scheme="dark"] #faqs .orm-text-secondary,
.theme-analytee-orm[data-color-scheme="dark"] #faqs .faq-item .text-slate-600,
.theme-analytee-orm[data-color-scheme="dark"] #faqs .faq-item .text-slate-500 {
  color: #d6e2f0 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #faqs .orm-eyebrow--surface {
  background: rgba(15, 23, 42, 0.72) !important;
  border-color: rgba(94, 234, 212, 0.3) !important;
  color: #ccfbf1 !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #faqs .faq-item {
  background: rgba(8, 20, 34, 0.92) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #faqs .faq-item.is-open {
  border-color: rgba(45, 212, 191, 0.46) !important;
  box-shadow: 0 20px 42px rgba(2, 6, 23, 0.28) !important;
}

.theme-analytee-orm[data-color-scheme="dark"] #faqs .faq-trigger svg,
.theme-analytee-orm[data-color-scheme="dark"] #faqs .faq-trigger .text-slate-500 {
  color: #d6e2f0 !important;
}

@media (max-width: 767px) {
  .orm-page-shell--legal {
    padding-block: clamp(3.5rem, 7vw, 4.5rem);
  }
  .orm-legal-shell {
    padding-inline: 0.75rem;
  }
  .orm-hero-proof-strip,
  .orm-pricing-value-grid,
  .orm-pricing-page-shell {
    grid-template-columns: 1fr;
  }
  .pricing-tooltip-content {
    inset-inline-start: auto !important;
    inset-inline-end: 0;
    inset-block-start: calc(100% + 0.75rem);
    margin-left: 0 !important;
    transform: none !important;
    min-width: min(18rem, calc(100vw - 2rem));
  }
}

@media (max-width: 639px) {
  .orm-cookie-panel {
    padding: 0.75rem 0.75rem max(0.75rem, env(safe-area-inset-bottom, 0.75rem));
  }

  .orm-cookie-panel .container > div {
    gap: 0.75rem;
    align-items: flex-end;
  }

  .theme-analytee-orm .cookie-policy-bar h3 {
    margin-bottom: 0.2rem;
    font-size: 0.8125rem;
    line-height: 1.2;
  }

  .theme-analytee-orm .cookie-policy-bar p {
    font-size: 0.66rem;
    line-height: 1.3;
  }

  .theme-analytee-orm .cookie-policy-bar .btn-decline,
  .theme-analytee-orm .cookie-policy-bar .btn-accept {
    min-height: 2.125rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.775rem;
  }
}
