/* ==========================================================================
   Nexora Labs template stylesheet
   --------------------------------------------------------------------------
   Client customization starts with the CSS variables below. Most component
   styles use these tokens, so changing colors, shadows, or radius here updates
   the whole site without editing every section manually.
   ========================================================================== */
:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --text: #111827;
  --muted: #637083;
  --line: rgba(17, 24, 39, 0.12);
  --primary: #0f8b8d;
  --primary-2: #2563eb;
  --accent: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 24px 70px rgba(20, 31, 50, 0.14);
  --radius: 8px;
}

[data-theme="dark"] {
  /* Dark theme tokens. The theme switcher in js/main.js toggles this attribute
     on the <html> element and stores the user's choice in localStorage. */
  --bg: #071016;
  --surface: #0e1b24;
  --surface-2: #132633;
  --text: #f2f7fb;
  --muted: #9fb1c1;
  --line: rgba(226, 238, 247, 0.13);
  --primary: #36c7b7;
  --primary-2: #7aa2ff;
  --accent: #f4bd50;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

/* Base reset and shared utility classes. Keep these near the top so every page
   uses the same spacing, typography, accessibility helpers, and containers. */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 6%, rgba(15, 139, 141, 0.18), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(245, 158, 11, 0.13), transparent 22rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background-color 0.25s ease, color 0.25s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 99; background: var(--text); color: var(--bg); padding: 0.75rem 1rem; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.section-pad { padding: 96px 0; }

/* Header and navigation. The .scrolled class is added by JavaScript after the
   user scrolls, giving the sticky header a stronger separation from content. */
.site-header { position: sticky; top: 0; z-index: 50; padding: 14px 0; backdrop-filter: blur(20px); background: color-mix(in srgb, var(--bg) 82%, transparent); border-bottom: 1px solid transparent; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08); }
.nav-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: var(--radius); background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: white; box-shadow: 0 12px 30px rgba(15, 139, 141, 0.3); }
.nav-menu { justify-self: center; display: flex; align-items: center; gap: 8px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: color-mix(in srgb, var(--surface) 74%, transparent); }
.nav-menu a { color: var(--muted); padding: 9px 14px; border-radius: 999px; font-size: 0.94rem; font-weight: 700; transition: 0.2s ease; }
.nav-menu a:hover, .nav-menu a.active { color: var(--text); background: var(--surface-2); }
.theme-toggle, .nav-toggle { border: 1px solid var(--line); color: var(--text); background: var(--surface); border-radius: 999px; cursor: pointer; }
.theme-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; font-weight: 800; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06); }
.theme-icon { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, var(--accent) 50%, var(--primary-2) 50%); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; border-radius: 2px; }

/* Home hero. Change the grid proportions, headline size, dashboard mockup, and
   metric strip here if the landing page needs a different first impression. */
.hero { position: relative; overflow: hidden; min-height: calc(100vh - 70px); display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.82fr); gap: 72px; align-items: center; }
.hero-copy { max-width: 720px; }
.eyebrow { margin: 0 0 14px; color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1 { font-size: clamp(3rem, 5.2vw, 5.35rem); max-width: 760px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: 1.2rem; }
.hero-text, .page-hero p, .section-heading p + h2 + p { color: var(--muted); font-size: 1.12rem; max-width: 680px; }
.hero-brief { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: end; margin: 24px 0 22px; padding-left: 22px; border-left: 2px solid color-mix(in srgb, var(--primary) 56%, var(--line)); }
.hero-brief .hero-text { margin: 0; max-width: 490px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; min-width: 196px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); padding: 0 20px; font-weight: 800; border: 1px solid transparent; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 18px 40px rgba(37, 99, 235, 0.24); }
.btn-secondary { color: var(--text); background: var(--surface); border-color: var(--line); }
.text-link { display: inline-flex; margin-top: 22px; color: var(--primary); font-weight: 800; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; padding: 0; list-style: none; }
.hero-tags li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: color-mix(in srgb, var(--surface) 62%, transparent); font-size: 0.88rem; font-weight: 800; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; max-width: 650px; margin: 0; padding: 16px 0 0; list-style: none; border-top: 1px solid var(--line); }
.hero-metrics li { padding: 0 18px; border-left: 1px solid var(--line); }
.hero-metrics li:first-child { padding-left: 0; border-left: 0; }
.hero-metrics strong { display: block; font-size: 1.35rem; }
.hero-metrics span { color: var(--muted); font-size: 0.9rem; }
/* Decorative hero layers. Their motion comes from data-parallax attributes in
   the HTML and the updateParallax() function in js/main.js. */
.parallax-orbit { position: absolute; width: 420px; height: 420px; border: 1px solid var(--line); border-radius: 50%; pointer-events: none; opacity: 0.6; }
.orbit-one { right: -120px; top: 90px; }
.orbit-two { left: -160px; bottom: 70px; }
.glass-card { background: color-mix(in srgb, var(--surface) 76%, transparent); border: 1px solid var(--line); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
/* CSS-only dashboard mockup used in the hero. Bar heights are controlled by
   the .bar-* classes so the HTML stays W3-friendly without inline styles. */
.dashboard-card { border-radius: var(--radius); padding: 18px; min-height: 520px; transform: perspective(1100px) rotateY(-7deg) rotateX(4deg); animation: floatPanel 5s ease-in-out infinite; }
.window-bar { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.85rem; font-weight: 800; margin-bottom: 18px; }
.window-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--danger); }
.window-bar span:nth-child(2) { background: var(--accent); }
.window-bar span:nth-child(3) { background: var(--primary); margin-right: auto; }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.signal { aspect-ratio: 1; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--line); position: relative; overflow: hidden; }
.signal::after { content: ""; position: absolute; inset: 24%; border-radius: inherit; background: var(--muted); opacity: 0.35; }
.signal.active::after { background: var(--primary); opacity: 1; box-shadow: 0 0 26px var(--primary); }
.signal.hot::after { background: var(--accent); opacity: 1; }
.chart-panel { height: 150px; margin: 22px 0; padding: 18px; display: flex; align-items: end; gap: 12px; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--line); }
.chart-panel span { flex: 1; min-width: 18px; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--primary-2), var(--primary)); animation: growBars 1.5s ease both; }
.chart-panel .bar-42 { height: 42%; }
.chart-panel .bar-70 { height: 70%; }
.chart-panel .bar-54 { height: 54%; }
.chart-panel .bar-86 { height: 86%; }
.chart-panel .bar-63 { height: 63%; }
.chart-panel .bar-92 { height: 92%; }
.status-row { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-top: 1px solid var(--line); }
.status-row span { color: var(--muted); }

/* Shared content sections and card systems. These classes are reused across
   several pages, so edits here can affect home, solutions, platform, and cases. */
.clients-band { padding: 30px 0; border-block: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 52%, transparent); }
.logo-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: var(--muted); font-weight: 900; margin-block: 0; padding-left: 0; list-style: none; }
.split-layout, .two-column { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr); gap: 58px; align-items: start; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.feature-grid, .service-grid, .case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card, .service-card, .study-card { min-height: 240px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 18px 48px rgba(0, 0, 0, 0.05); transition: transform 0.2s ease, border-color 0.2s ease; }
.feature-card:hover, .service-card:hover, .study-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--primary) 50%, var(--line)); }
.feature-icon, .service-card span { display: inline-grid; place-items: center; min-width: 42px; height: 32px; padding: 0 10px; border-radius: 999px; background: var(--surface-2); color: var(--primary); font-weight: 900; margin-bottom: 26px; }
.feature-card p, .service-card p, .study-card p, .timeline p, .contact-panel p { color: var(--muted); }
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card ul { margin: 22px 0 0; padding-left: 18px; color: var(--muted); }
/* Dark content band. This is intentionally fixed darker than the global theme
   so it remains a strong visual section in both light and dark modes. */
.dark-panel { background: linear-gradient(135deg, #06141b, #102b33 50%, #112437); color: #f6fbff; }
.dark-panel .eyebrow { color: #63dfd1; }
.dark-panel p, .dark-panel .timeline p { color: #b9c8d4; }
.timeline { display: grid; gap: 16px; }
.timeline div, .process-board div { padding: 22px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius); background: rgba(255, 255, 255, 0.06); }
.timeline span, .process-board span { color: var(--accent); font-weight: 900; }
/* Interactive platform tabs on index.html. The active button class and panel
   text are controlled by the data-tab logic in js/main.js. */
.platform-showcase { display: grid; grid-template-columns: 280px 1fr; gap: 20px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.module-stack { display: grid; gap: 10px; align-content: start; }
.module-item { text-align: left; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--text); background: var(--surface-2); cursor: pointer; font-weight: 900; }
.module-item.active { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; }
.module-panel { min-height: 320px; padding: 28px; border-radius: var(--radius); background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 16%, transparent), color-mix(in srgb, var(--accent) 14%, transparent)); border: 1px solid var(--line); }
.mini-network { position: relative; height: 190px; margin-top: 30px; border-radius: var(--radius); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 42px 42px; }
.mini-network span { position: absolute; width: 28px; height: 28px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 10px color-mix(in srgb, var(--primary) 16%, transparent); }
.mini-network span:nth-child(1) { left: 12%; top: 20%; }
.mini-network span:nth-child(2) { left: 46%; top: 48%; background: var(--accent); }
.mini-network span:nth-child(3) { right: 16%; top: 24%; background: var(--primary-2); }
.mini-network span:nth-child(4) { left: 24%; bottom: 16%; }
.mini-network span:nth-child(5) { right: 28%; bottom: 12%; background: var(--accent); }
.soft-band { background: color-mix(in srgb, var(--surface-2) 72%, transparent); }
/* Carousel and accordion components. Keep the class names if you want the
   JavaScript behavior to keep working after content changes. */
.carousel { position: relative; display: grid; grid-template-columns: 54px 1fr 54px; gap: 18px; align-items: center; }
.carousel-track { overflow: hidden; border-radius: var(--radius); }
.case-slide { display: none; min-height: 280px; padding: 36px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.case-slide.active { display: block; animation: slideIn 0.45s ease; }
.tag { display: inline-flex; margin: 0 0 18px; padding: 6px 10px; border-radius: 999px; background: color-mix(in srgb, var(--primary) 14%, transparent); color: var(--primary); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; }
.carousel-btn { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--text); cursor: pointer; font-size: 2rem; }
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.accordion-item + .accordion-item { border-top: 1px solid var(--line); }
.accordion button { width: 100%; display: flex; justify-content: space-between; gap: 18px; text-align: left; padding: 20px; border: 0; background: transparent; color: var(--text); cursor: pointer; font-weight: 900; }
.accordion button::after { content: "+"; font-size: 1.25rem; color: var(--primary); }
.accordion button[aria-expanded="true"]::after { content: "-"; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.accordion-panel p { margin: 0; padding: 0 20px 20px; color: var(--muted); }
.cta-section { padding-top: 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 38px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
/* Inner page layouts: page hero, process board, platform diagram, integrations,
   case study cards, quote block, and contact form. */
.page-hero { padding-top: 132px; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); }
.process-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.process-board div { display: flex; justify-content: space-between; gap: 16px; font-weight: 900; }
.platform-diagram { position: relative; min-height: 560px; display: grid; place-items: center; border-radius: var(--radius); border: 1px solid var(--line); background: radial-gradient(circle, color-mix(in srgb, var(--primary) 24%, transparent), transparent 34%), var(--surface); overflow: hidden; box-shadow: var(--shadow); }
.platform-diagram::before, .platform-diagram::after { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.platform-diagram::before { width: 460px; height: 460px; }
.platform-diagram::after { width: 290px; height: 290px; }
.core-node, .orbit-card { position: absolute; display: grid; place-items: center; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.08); font-weight: 900; }
.core-node { width: 180px; height: 180px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: white; z-index: 2; }
.orbit-card { width: 170px; height: 82px; }
.orbit-card.top { top: 58px; }
.orbit-card.right { right: 90px; }
.orbit-card.bottom { bottom: 58px; }
.orbit-card.left { left: 90px; }
.integration-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.integration-grid span { padding: 18px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); font-weight: 900; }
.case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.study-card div { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; }
.study-card strong { font-size: 1.65rem; color: var(--primary); }
.study-card span { color: var(--muted); text-align: right; }
.quote-block { max-width: 900px; }
blockquote { margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.1; font-weight: 800; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 28px; align-items: start; }
.contact-form, .contact-panel { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 12px; }
.contact-form label { font-weight: 800; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); color: var(--text); padding: 13px 14px; }
.contact-panel div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-panel span { color: var(--primary); font-weight: 900; }
/* Footer and reveal animation classes. Add .reveal to any new section that
   should animate into view when it enters the viewport. */
.site-footer { padding: 54px 0; border-top: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 68%, transparent); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.6fr 0.8fr; gap: 30px; color: var(--muted); }
.footer-grid h2 { color: var(--text); font-size: 1rem; margin-bottom: 14px; }
.footer-grid a, .footer-grid span { display: block; margin: 8px 0; }
.footer-grid .brand { color: var(--text); margin-bottom: 14px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Motion presets. Keep animations subtle for a professional IT/enterprise feel. */
@keyframes floatPanel { 0%, 100% { transform: perspective(1100px) rotateY(-7deg) rotateX(4deg) translateY(0); } 50% { transform: perspective(1100px) rotateY(-4deg) rotateX(5deg) translateY(-14px); } }
@keyframes growBars { from { transform: scaleY(0.3); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* Tablet breakpoint: layout shifts from desktop grids to stacked content and
   the mobile navigation menu becomes available. */
@media (max-width: 980px) {
  .nav-shell { grid-template-columns: auto auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .nav-menu { position: absolute; top: calc(100% + 8px); left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .nav-menu a { text-align: center; }
  .hero-grid, .split-layout, .two-column, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-brief { grid-template-columns: 1fr; align-items: start; }
  .hero { min-height: auto; }
  .hero-visual { order: -1; }
  .dashboard-card { min-height: 420px; transform: none; animation: none; }
  .feature-grid, .feature-grid.four, .service-grid, .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-showcase { grid-template-columns: 1fr; }
  .contact-grid { gap: 20px; }
}

/* Mobile breakpoint: single-column cards, full-width buttons, compact spacing,
   and simplified dashboard/platform visuals. */
@media (max-width: 680px) {
  .container, .nav-shell { width: min(100% - 28px, 1180px); }
  .section-pad { padding: 68px 0; }
  .page-hero { padding-top: 110px; }
  .theme-toggle span:last-child { display: none; }
  h1 { font-size: clamp(2.45rem, 14vw, 4rem); }
  .hero-brief { padding-left: 16px; margin-top: 20px; }
  .hero-metrics, .feature-grid, .feature-grid.four, .service-grid, .case-grid, .process-board, .integration-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-metrics { gap: 12px; padding-top: 0; border-top: 0; }
  .hero-metrics li { padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: color-mix(in srgb, var(--surface) 72%, transparent); }
  .hero-actions, .cta-inner { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .carousel { grid-template-columns: 1fr; }
  .carousel-btn { width: 100%; border-radius: var(--radius); }
  .platform-diagram { min-height: 460px; }
  .platform-diagram::before { width: 330px; height: 330px; }
  .platform-diagram::after { width: 210px; height: 210px; }
  .core-node { width: 134px; height: 134px; }
  .orbit-card { width: 138px; height: 64px; }
  .orbit-card.left { left: 12px; }
  .orbit-card.right { right: 12px; }
  .orbit-card.top { top: 30px; }
  .orbit-card.bottom { bottom: 30px; }
  .case-slide, .cta-inner, .contact-form, .contact-panel { padding: 22px; }
}

/* Accessibility: respect users who prefer reduced motion at the OS/browser level. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
