@import "./components/motion.css";
@import "./components/primitives.css";
@import "./components/surfaces.css";

:root {
    --shell-bg: #050505;
    --shell-surface: #0a0a0b;
    --shell-text: rgba(255, 255, 255, 0.96);
    --shell-muted: rgba(255, 255, 255, 0.72);
    --shell-faint: rgba(255, 255, 255, 0.45);
    --shell-border: rgba(255, 255, 255, 0.1);
    --shell-border-strong: rgba(255, 255, 255, 0.16);
    --shell-nav: rgba(5, 5, 5, 0.42);
    --shell-menu: rgba(15, 15, 16, 0.96);
    --shell-backdrop: rgba(10, 10, 11, 0.78);
    --shell-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    --shell-card-border: rgba(255, 255, 255, 0.1);
    --shell-card-text: #ffffff;
    --shell-card-muted: rgba(255, 255, 255, 0.74);
    --shell-shadow: 0 30px 80px -36px rgba(0, 0, 0, 0.45);
}

html[data-theme="light"] {
    color-scheme: light;
    --shell-bg: #f5efe8;
    --shell-surface: #fffaf5;
    --shell-text: rgba(36, 23, 18, 0.96);
    --shell-muted: rgba(84, 60, 51, 0.82);
    --shell-faint: rgba(110, 82, 72, 0.68);
    --shell-border: rgba(92, 63, 52, 0.14);
    --shell-border-strong: rgba(92, 63, 52, 0.22);
    --shell-nav: rgba(250, 245, 239, 0.84);
    --shell-menu: rgba(255, 250, 245, 0.97);
    --shell-backdrop: rgba(255, 250, 245, 0.9);
    --shell-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 243, 237, 0.88));
    --shell-card-border: rgba(92, 63, 52, 0.14);
    --shell-card-text: #241712;
    --shell-card-muted: rgba(84, 60, 51, 0.82);
    --shell-shadow: 0 24px 56px -34px rgba(95, 69, 59, 0.22);
}

html {
    font-family: "Inter", sans-serif;
}

body {
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color 180ms ease, color 180ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
    font-family: "Space Grotesk", sans-serif;
}

p,
li,
label,
small,
blockquote,
.font-sans {
    font-family: "Inter", sans-serif;
}

button,
input,
textarea,
select {
    font: inherit;
}

code,
pre,
kbd,
samp,
.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

.nav-glass {
    background: var(--shell-nav);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid var(--shell-border);
    transition: background 180ms ease, border-color 180ms ease;
}

.mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.18), inset 0 0 0 1px var(--shell-border);
    background: var(--shell-menu);
    backdrop-filter: blur(20px);
    pointer-events: none;
}

.group:hover .mega-menu,
.group:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
}

.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-premium::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
}

.btn-premium:hover::after {
    left: 150%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow: 0 0 0 1px rgba(239, 13, 51, 0.95), 0 0 0 4px rgba(239, 13, 51, 0.18);
}

.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--shell-border-strong);
    background: var(--shell-backdrop);
    color: var(--shell-muted);
    padding: 0.85rem 1rem;
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: all 250ms ease;
}

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

.back-to-top:hover {
    background: rgba(239, 13, 51, 0.92);
    border-color: rgba(239, 13, 51, 0.55);
    color: #ffffff;
}

.site-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 2.8rem;
    height: 2.8rem;
    padding: 0 0.9rem;
    border-radius: 9999px;
    border: 1px solid var(--shell-border-strong);
    background: var(--shell-backdrop);
    color: var(--shell-text);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 30px -20px rgba(0, 0, 0, 0.24);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-theme-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(239, 13, 51, 0.32);
}

.site-theme-toggle__status {
    display: inline-block;
    font-size: 0.58rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--shell-faint);
    transition: color 180ms ease;
}

.site-theme-toggle:hover .site-theme-toggle__status,
.site-theme-toggle:focus-visible .site-theme-toggle__status {
    color: var(--shell-text);
}

@media (max-width: 640px) {
    .site-theme-toggle {
        padding: 0 0.78rem;
        gap: 0.45rem;
    }

    .site-theme-toggle__status {
        font-size: 0.52rem;
        letter-spacing: 0.14em;
    }
}

.site-logo {
    transition: filter 180ms ease;
}

.scorecard-muted-copy {
    color: #475569;
}

html[data-theme="dark"] .scorecard-experience .scorecard-muted-copy {
    color: rgba(255, 255, 255, 0.72) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.72) !important;
}

.scorecard-inverse-button {
    background: #0f172a;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="dark"] .scorecard-experience .scorecard-inverse-button {
    background: #ffffff !important;
    color: #050505 !important;
    -webkit-text-fill-color: #050505 !important;
}

html[data-theme="light"] .scorecard-experience .scorecard-inverse-button {
    background: #0f172a !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="dark"] .scorecard-experience .scorecard-inverse-button:hover,
html[data-theme="dark"] .scorecard-experience .scorecard-inverse-button:focus-visible,
html[data-theme="light"] .scorecard-experience .scorecard-inverse-button:hover,
html[data-theme="light"] .scorecard-experience .scorecard-inverse-button:focus-visible {
    background: #ef0d33 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="light"] .site-logo {
    filter: brightness(0) saturate(100%);
}

html[data-theme="light"] .nav-glass :is(a, span) {
    color: var(--shell-faint);
}

html[data-theme="light"] .nav-glass :is(a:hover, a:focus-visible) {
    color: var(--shell-text);
}

html[data-theme="light"] .nav-glass .btn-premium,
html[data-theme="light"] .nav-glass .btn-premium:is(a, button) {
    color: #ffffff !important;
}

html[data-theme="light"] .nav-glass .btn-premium:hover,
html[data-theme="light"] .nav-glass .btn-premium:focus-visible {
    color: #ffffff !important;
}

html[data-theme="light"] #mobile-menu {
    background: rgba(255, 250, 245, 0.96);
    border-color: var(--shell-border);
}

html[data-theme="light"] #mobile-menu :is(a:not(.bg-accent), span) {
    color: var(--shell-text);
}

html[data-theme="light"] #mobile-menu .mobile-link:hover,
html[data-theme="light"] #mobile-menu .mobile-link:focus-visible {
    color: #ef0d33 !important;
}

html[data-theme="light"] #mobile-menu-btn span {
    background-color: var(--shell-text) !important;
}

html[data-theme="light"] .scorecard-experience .hero-grid {
    background-image:
        linear-gradient(rgba(92, 63, 52, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 63, 52, 0.08) 1px, transparent 1px);
}

html[data-theme="light"] .scorecard-experience :is(
    .shell,
    .shell-soft,
    .glass-panel,
    .stat-card,
    .sector-card,
    .case-card,
    .insight-card,
    .profile-card,
    .timeline-card,
    .contact-field,
    .score-card,
    .hero-panel,
    .sector-selector,
    .service-grid-card,
    .ai-card,
    .case-shell,
    .article-card,
    .theme-card,
    .cta-panel,
    .lead-card,
    .score-pill,
    .field-shell,
    .progress-step,
    .option-card,
    .question-panel,
    .consultation-date-trigger,
    .consultation-calendar,
    .time-slot-pill__ui,
    .meta-pill,
    .story-card,
    .metric-chip
) {
    border-color: var(--shell-card-border) !important;
    background: var(--shell-card-bg) !important;
    box-shadow: var(--shell-shadow);
}

html[data-theme="light"] .scorecard-experience :is(
    .shell,
    .shell-soft,
    .glass-panel,
    .stat-card,
    .sector-card,
    .case-card,
    .insight-card,
    .profile-card,
    .timeline-card,
    .contact-field,
    .score-card,
    .hero-panel,
    .sector-selector,
    .service-grid-card,
    .ai-card,
    .case-shell,
    .article-card,
    .theme-card,
    .cta-panel,
    .lead-card,
    .score-pill,
    .field-shell,
    .progress-step,
    .option-card,
    .question-panel,
    .consultation-date-trigger,
    .consultation-calendar,
    .time-slot-pill__ui,
    .meta-pill,
    .story-card,
    .metric-chip
) :is(h1, h2, h3, h4, h5, h6, p, li, span, label, small, a:not(.btn-premium), blockquote) {
    color: var(--shell-card-text) !important;
}

html[data-theme="light"] .scorecard-experience :is(
    .shell,
    .shell-soft,
    .glass-panel,
    .stat-card,
    .sector-card,
    .case-card,
    .insight-card,
    .profile-card,
    .timeline-card,
    .contact-field,
    .score-card,
    .hero-panel,
    .sector-selector,
    .service-grid-card,
    .ai-card,
    .case-shell,
    .article-card,
    .theme-card,
    .cta-panel,
    .lead-card,
    .score-pill,
    .field-shell,
    .progress-step,
    .option-card,
    .question-panel,
    .consultation-date-trigger,
    .consultation-calendar,
    .time-slot-pill__ui,
    .meta-pill,
    .story-card,
    .metric-chip
) :is([class*="text-white/"], .text-white) {
    color: var(--shell-card-muted) !important;
}

html[data-theme="light"] .scorecard-experience :is(
    .image-frame,
    .case-image,
    .sector-hero-image,
    .service-visual,
    .logo-badge
) :is(h1, h2, h3, h4, h5, h6, p, li, span, label, small, a, blockquote) {
    color: #ffffff !important;
}

html[data-theme="light"] .scorecard-experience footer {
    background: linear-gradient(180deg, rgba(250, 244, 238, 0.96), rgba(245, 237, 230, 0.96)) !important;
    border-color: var(--shell-border) !important;
}

html[data-theme="light"] .scorecard-experience footer :is(h4, p, li, span, a) {
    color: var(--shell-muted) !important;
}

html[data-theme="light"] .scorecard-experience footer a:hover {
    color: var(--shell-text) !important;
}

html[data-theme="light"] .scorecard-experience .bg-white.text-black,
html[data-theme="light"] .scorecard-experience a.bg-white.text-black,
html[data-theme="light"] .scorecard-experience button.bg-white.text-black {
    background: linear-gradient(180deg, rgba(42, 24, 19, 0.98), rgba(67, 37, 31, 0.98)) !important;
    color: #ffffff !important;
    border-color: rgba(42, 24, 19, 0.08) !important;
}

html[data-theme="light"] .scorecard-experience .bg-white.text-black:hover,
html[data-theme="light"] .scorecard-experience a.bg-white.text-black:hover,
html[data-theme="light"] .scorecard-experience button.bg-white.text-black:hover {
    background: rgba(239, 13, 51, 0.96) !important;
    color: #ffffff !important;
}

html[data-theme="light"] .scorecard-experience .bg-slate-900,
html[data-theme="light"] .scorecard-experience a.bg-slate-900,
html[data-theme="light"] .scorecard-experience button.bg-slate-900,
html[data-theme="light"] .scorecard-experience .btn-premium.bg-slate-900,
html[data-theme="light"] .scorecard-experience a.btn-premium.bg-slate-900,
html[data-theme="light"] .scorecard-experience button.btn-premium.bg-slate-900,
html[data-theme="light"] .scorecard-experience .bg-accent,
html[data-theme="light"] .scorecard-experience a.bg-accent,
html[data-theme="light"] .scorecard-experience button.bg-accent,
html[data-theme="light"] .scorecard-experience .btn-premium.bg-accent,
html[data-theme="light"] .scorecard-experience a.btn-premium.bg-accent,
html[data-theme="light"] .scorecard-experience button.btn-premium.bg-accent {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="light"] .scorecard-experience .bg-slate-900 :is(span, small, strong),
html[data-theme="light"] .scorecard-experience a.bg-slate-900 :is(span, small, strong),
html[data-theme="light"] .scorecard-experience button.bg-slate-900 :is(span, small, strong),
html[data-theme="light"] .scorecard-experience .btn-premium.bg-slate-900 :is(span, small, strong),
html[data-theme="light"] .scorecard-experience .bg-accent :is(span, small, strong),
html[data-theme="light"] .scorecard-experience a.bg-accent :is(span, small, strong),
html[data-theme="light"] .scorecard-experience button.bg-accent :is(span, small, strong),
html[data-theme="light"] .scorecard-experience .btn-premium.bg-accent :is(span, small, strong) {
    color: #ffffff !important;
}

html[data-theme="light"] .scorecard-experience .bg-slate-900:hover,
html[data-theme="light"] .scorecard-experience a.bg-slate-900:hover,
html[data-theme="light"] .scorecard-experience button.bg-slate-900:hover,
html[data-theme="light"] .scorecard-experience .bg-accent:hover,
html[data-theme="light"] .scorecard-experience a.bg-accent:hover,
html[data-theme="light"] .scorecard-experience button.bg-accent:hover,
html[data-theme="light"] .scorecard-experience .bg-slate-900:focus-visible,
html[data-theme="light"] .scorecard-experience a.bg-slate-900:focus-visible,
html[data-theme="light"] .scorecard-experience button.bg-slate-900:focus-visible,
html[data-theme="light"] .scorecard-experience .bg-accent:focus-visible,
html[data-theme="light"] .scorecard-experience a.bg-accent:focus-visible,
html[data-theme="light"] .scorecard-experience button.bg-accent:focus-visible,
html[data-theme="light"] .scorecard-experience .btn-premium.bg-slate-900:hover,
html[data-theme="light"] .scorecard-experience a.btn-premium.bg-slate-900:hover,
html[data-theme="light"] .scorecard-experience button.btn-premium.bg-slate-900:hover,
html[data-theme="light"] .scorecard-experience .btn-premium.bg-accent:hover,
html[data-theme="light"] .scorecard-experience a.btn-premium.bg-accent:hover,
html[data-theme="light"] .scorecard-experience button.btn-premium.bg-accent:hover,
html[data-theme="light"] .scorecard-experience .btn-premium.bg-slate-900:focus-visible,
html[data-theme="light"] .scorecard-experience a.btn-premium.bg-slate-900:focus-visible,
html[data-theme="light"] .scorecard-experience button.btn-premium.bg-slate-900:focus-visible,
html[data-theme="light"] .scorecard-experience .btn-premium.bg-accent:focus-visible,
html[data-theme="light"] .scorecard-experience a.btn-premium.bg-accent:focus-visible,
html[data-theme="light"] .scorecard-experience button.btn-premium.bg-accent:focus-visible {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="light"] .scorecard-experience a.bg-slate-900:not(.btn-premium),
html[data-theme="light"] .scorecard-experience button.bg-slate-900:not(.btn-premium),
html[data-theme="light"] .scorecard-experience a.bg-accent:not(.btn-premium),
html[data-theme="light"] .scorecard-experience button.bg-accent:not(.btn-premium) {
    color: #ffffff !important;
}

html[data-theme="light"] .scorecard-experience .score-card::after,
html[data-theme="light"] .scorecard-experience .panel-glow::before {
    background: radial-gradient(circle, rgba(239, 13, 51, 0.14), transparent 70%);
}

html[data-theme="light"] .scorecard-experience .progress-track,
html[data-theme="light"] .scorecard-experience .maturity-track {
    background: rgba(92, 63, 52, 0.12);
}

html[data-theme="light"] .scorecard-experience .progress-fill,
html[data-theme="light"] .scorecard-experience .maturity-fill,
html[data-theme="light"] .scorecard-experience .metric-bar {
    background: linear-gradient(90deg, rgba(239, 13, 51, 0.92), rgba(67, 37, 31, 0.88));
}

html[data-theme="light"] .scorecard-experience .option-card:hover,
html[data-theme="light"] .scorecard-experience .quick-link:hover,
html[data-theme="light"] .scorecard-experience .time-slot-pill:hover .time-slot-pill__ui {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 243, 237, 0.92)) !important;
}

html[data-theme="light"] .scorecard-experience .option-card.is-selected,
html[data-theme="light"] .scorecard-experience .time-slot-pill input:checked + .time-slot-pill__ui {
    background: linear-gradient(180deg, rgba(239, 13, 51, 0.12), rgba(255, 250, 245, 0.96)) !important;
    border-color: rgba(239, 13, 51, 0.38) !important;
    box-shadow: 0 0 0 1px rgba(239, 13, 51, 0.1), 0 18px 40px -32px rgba(95, 69, 59, 0.28);
}

html[data-theme="light"] .scorecard-experience .option-card.is-selected .option-index {
    color: #ffffff !important;
}

html[data-theme="light"] .scorecard-experience .score-orb {
    background:
        radial-gradient(circle at center, rgba(255, 250, 245, 0.98) 52%, transparent 53%),
        conic-gradient(#ef0d33 var(--progress), rgba(92, 63, 52, 0.12) 0);
    box-shadow: inset 0 0 0 1px rgba(92, 63, 52, 0.08);
}

html[data-theme="light"] .scorecard-experience .consultation-date-trigger,
html[data-theme="light"] .scorecard-experience .consultation-calendar,
html[data-theme="light"] .scorecard-experience .time-slot-pill__ui {
    border-color: rgba(92, 63, 52, 0.14) !important;
}

html[data-theme="light"] .scorecard-experience .consultation-date-trigger {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 243, 237, 0.92)) !important;
    color: #241712 !important;
}

html[data-theme="light"] .scorecard-experience .consultation-date-trigger__chevron,
html[data-theme="light"] .scorecard-experience .consultation-control-meta,
html[data-theme="light"] .scorecard-experience .time-slot-pill__hint,
html[data-theme="light"] .scorecard-experience .quick-link-index {
    color: rgba(84, 60, 51, 0.7) !important;
}

html[data-theme="light"] .scorecard-experience .consultation-calendar {
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.99), rgba(245, 237, 230, 0.98)) !important;
    box-shadow: 0 28px 60px -30px rgba(95, 69, 59, 0.28);
}

html[data-theme="light"] .scorecard-experience .consultation-calendar__month,
html[data-theme="light"] .scorecard-experience .consultation-calendar__day,
html[data-theme="light"] .scorecard-experience .time-slot-pill__title,
html[data-theme="light"] .scorecard-experience .consultation-control-title {
    color: #241712 !important;
}

html[data-theme="light"] .scorecard-experience .consultation-calendar__weekdays span {
    color: rgba(84, 60, 51, 0.55) !important;
}

html[data-theme="light"] .scorecard-experience .consultation-calendar__nav,
html[data-theme="light"] .scorecard-experience .consultation-calendar__day,
html[data-theme="light"] .scorecard-experience .quick-link-index {
    background: rgba(255, 255, 255, 0.68) !important;
}

html[data-theme="light"] .scorecard-experience .consultation-calendar__nav {
    color: rgba(84, 60, 51, 0.78) !important;
}

html[data-theme="light"] .scorecard-experience .consultation-calendar__day:hover,
html[data-theme="light"] .scorecard-experience .consultation-calendar__nav:hover {
    color: #ffffff !important;
    background: rgba(239, 13, 51, 0.9) !important;
}

html[data-theme="light"] .scorecard-experience .consultation-calendar__day.is-today {
    border-color: rgba(92, 63, 52, 0.22) !important;
}

html[data-theme="dark"] .scorecard-experience {
    background: #050505;
    color: rgba(255, 255, 255, 0.96);
}

html[data-theme="dark"] .scorecard-experience .text-slate-900 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="dark"] .scorecard-experience .text-slate-700 {
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8) !important;
}

html[data-theme="dark"] .scorecard-experience .text-slate-600 {
    color: rgba(255, 255, 255, 0.72) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.72) !important;
}

html[data-theme="dark"] .scorecard-experience .text-slate-500 {
    color: rgba(255, 255, 255, 0.6) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.6) !important;
}

html[data-theme="dark"] .scorecard-experience .text-slate-400 {
    color: rgba(255, 255, 255, 0.45) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.45) !important;
}

html[data-theme="dark"] .scorecard-experience .hover\:text-slate-900:hover,
html[data-theme="dark"] .scorecard-experience .hover\:text-slate-900:focus-visible {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

html[data-theme="dark"] .scorecard-experience .scorecard-home-summary {
    color: rgba(255, 255, 255, 0.72) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.72) !important;
    text-shadow: none !important;
}

html[data-theme="dark"] .scorecard-experience .score-card,
html[data-theme="dark"] .scorecard-experience .stepper-shell,
html[data-theme="dark"] .scorecard-experience .stepper-sidebar,
html[data-theme="dark"] .scorecard-experience .question-panel,
html[data-theme="dark"] .scorecard-experience .option-card,
html[data-theme="dark"] .scorecard-experience .score-pill,
html[data-theme="dark"] .scorecard-experience .field-shell,
html[data-theme="dark"] .scorecard-experience .consultation-calendar,
html[data-theme="dark"] .scorecard-experience .consultation-date-trigger,
html[data-theme="dark"] .scorecard-experience .time-slot-pill__ui {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

html[data-theme="dark"] .scorecard-experience .option-card:hover,
html[data-theme="dark"] .scorecard-experience .time-slot-pill__ui:hover,
html[data-theme="dark"] .scorecard-experience .consultation-date-trigger:hover {
    border-color: rgba(255, 255, 255, 0.18) !important;
}

html[data-theme="dark"] .scorecard-experience .option-card.is-selected,
html[data-theme="dark"] .scorecard-experience .option-card.is-selected:hover {
    background: linear-gradient(180deg, rgba(239, 13, 51, 0.28), rgba(239, 13, 51, 0.12)) !important;
    border-color: rgba(239, 13, 51, 0.78) !important;
    box-shadow: 0 0 0 1px rgba(239, 13, 51, 0.22), 0 16px 32px rgba(0, 0, 0, 0.28) !important;
}

html[data-theme="dark"] .scorecard-experience .option-card.is-selected .option-index {
    background: #ef0d33 !important;
    color: #ffffff !important;
    border-color: rgba(239, 13, 51, 0.9) !important;
    box-shadow: 0 0 0 4px rgba(239, 13, 51, 0.16) !important;
}

html[data-theme="dark"] .scorecard-experience .option-card.is-selected span:last-child {
    color: rgba(255, 255, 255, 0.96) !important;
}

html[data-theme="dark"] .scorecard-experience .option-index,
html[data-theme="dark"] .scorecard-experience .score-card .rounded-\[1\.5rem\],
html[data-theme="dark"] .scorecard-experience .score-card .rounded-\[1\.4rem\],
html[data-theme="dark"] .scorecard-experience .stepper-sidebar .rounded-\[1\.4rem\] {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="dark"] .scorecard-experience .progress-track {
    background: rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="dark"] .scorecard-experience footer {
    background: #050505 !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

html[data-theme="dark"] .scorecard-experience footer :is(h4, p, li, span, a) {
    color: rgba(255, 255, 255, 0.48) !important;
}

html[data-theme="dark"] .scorecard-experience footer a:hover {
    color: #ffffff !important;
}

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