/* ============================================================
   RADIANT MOTION — Light Theme Override
   Crisp white. Vivid vermillion. Syne + Plus Jakarta Sans.
   Animated aurora orbs. Floating sparkles. Premium motion.
   Loads AFTER custom.css — overrides dark obsidian theme.
   ============================================================ */

/* ── Design tokens: light palette ── */
:root {
  --primary:       #0a0a0b;
  --accent:        #f5441d;
  --accent-hover:  #d93610;
  --accent-light:  rgba(245, 68, 29, 0.08);
  --accent-blue:   #0057ff;
  --accent-yellow: #ffd60a;
  --text:          #1a1a1e;
  --muted:         #6b7280;
  --bg:            #ffffff;
  --bg-alt:        #f9f7f4;
  --border:        #e8e5e0;
  --success:       #10b981;
  --error:         #ef4444;
  --shadow-sm:  0 1px 3px rgba(10,10,11,0.07), 0 1px 2px rgba(10,10,11,0.05);
  --shadow:     0 4px 12px rgba(10,10,11,0.09), 0 2px 6px rgba(10,10,11,0.06);
  --shadow-lg:  0 12px 32px rgba(10,10,11,0.11), 0 4px 12px rgba(10,10,11,0.07);
  --shadow-xl:  0 24px 64px rgba(10,10,11,0.14), 0 8px 24px rgba(10,10,11,0.09);
  --radius:     0.5rem;
  --radius-lg:  1rem;
  --transition: 0.22s ease;
  --transition-slow: 0.42s ease;
}

/* ── Global reset to light ── */
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #1a1a1e;
}

/* Remove grain overlay from dark theme */
body::after { display: none !important; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', system-ui, sans-serif;
  color: #0a0a0b;
  letter-spacing: -0.03em;
}

h2 { color: #0a0a0b; }
h3 { color: #111116; }
h4 { color: #1a1a1e; font-weight: 700; }
p  { color: #6b7280; }
a  { color: var(--accent); }
a:hover { color: var(--accent-hover); }

/* ============================================================
   HERO — Aurora Orb Design
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 8rem 1rem 4rem;
}

/* Remove dark grid pattern */
.hero::before,
.hero::after { display: none !important; }

/* ── Animated aurora orbs ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-orb-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(245, 68, 29, 0.22) 0%, rgba(255, 100, 50, 0.08) 60%, transparent 80%);
  filter: blur(70px);
  top: -180px;
  right: -120px;
  animation: orbFloat1 11s ease-in-out infinite;
}

.hero-orb-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.14) 0%, rgba(0, 120, 255, 0.05) 60%, transparent 80%);
  filter: blur(80px);
  bottom: -120px;
  left: -80px;
  animation: orbFloat2 14s ease-in-out infinite;
}

.hero-orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.2) 0%, rgba(255, 200, 0, 0.06) 60%, transparent 80%);
  filter: blur(60px);
  top: 25%;
  right: 22%;
  animation: orbFloat3 9s ease-in-out infinite;
}

.hero-orb-4 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 68, 29, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  bottom: 15%;
  right: 38%;
  animation: orbFloat4 16s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(-50px, 40px) scale(1.06); }
  50%       { transform: translate(30px, 70px) scale(0.94); }
  75%       { transform: translate(60px, -30px) scale(1.1); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, -70px) scale(1.12); }
  66%       { transform: translate(-40px, 50px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50%       { transform: translate(-50px, 50px) scale(1.2) rotate(180deg); }
}

@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(40px, -60px) scale(1.25); }
  80%       { transform: translate(-25px, 25px) scale(0.82); }
}

/* ── Floating sparkle decorations ── */
.hero-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.spark {
  position: absolute;
  font-style: normal;
  line-height: 1;
  opacity: 0;
  animation: sparkTwinkle 3.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.spark-1 { top: 14%; left: 62%; font-size: 1.1rem;  color: var(--accent);        animation-delay: 0s; }
.spark-2 { top: 38%; right: 12%; font-size: 0.65rem; color: var(--accent-blue);   animation-delay: 0.8s; }
.spark-3 { top: 68%; right: 22%; font-size: 0.9rem;  color: var(--accent-yellow); animation-delay: 1.6s; }
.spark-4 { top: 22%; right: 32%; font-size: 0.55rem; color: var(--accent);        animation-delay: 2.4s; }
.spark-5 { top: 55%; left: 68%; font-size: 0.75rem;  color: var(--accent-blue);   animation-delay: 0.4s; }
.spark-6 { top: 10%; right: 48%; font-size: 0.6rem;  color: var(--accent-yellow); animation-delay: 1.2s; }

@keyframes sparkTwinkle {
  0%        { opacity: 0;   transform: scale(0.4) rotate(0deg); }
  20%, 80%  { opacity: 1;   transform: scale(1)   rotate(180deg); }
  50%       { opacity: 0.7; transform: scale(1.3) rotate(360deg); }
  100%      { opacity: 0;   transform: scale(0.4) rotate(540deg); }
}

/* ── Hero typography ── */
.hero h1 {
  color: #0a0a0b;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  display: inline-block;
}

/* Animated underline on accented name */
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #ff8a65);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawUnderline 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

@keyframes drawUnderline {
  to { transform: scaleX(1); }
}

.hero-subtitle {
  color: #6b7280;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-badge {
  background: rgba(245, 68, 29, 0.07);
  color: #c7330e;
  border: 1.5px solid rgba(245, 68, 29, 0.18);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* Hero metrics */
.hero-metrics {
  border-top: 1px solid #e8e5e0;
}

.metric-value {
  color: #0a0a0b !important;
  font-family: 'Syne', system-ui !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  background: none !important;
  -webkit-text-fill-color: #0a0a0b !important;
  animation: countUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-metric:nth-child(1) .metric-value { animation-delay: 0.6s; }
.hero-metric:nth-child(2) .metric-value { animation-delay: 0.75s; }
.hero-metric:nth-child(3) .metric-value { animation-delay: 0.9s; }
.hero-metric:nth-child(4) .metric-value { animation-delay: 1.05s; }

.metric-label {
  color: #9ca3af !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem !important;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Hero CTA: pulsing glow on primary button */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(245, 68, 29, 0.28); }
  50%       { box-shadow: 0 4px 36px rgba(245, 68, 29, 0.55); }
}

.hero-actions .btn-primary {
  animation: ctaPulse 2.8s ease-in-out infinite !important;
}

.hero-actions .btn-primary:hover {
  animation: none !important;
}

/* ============================================================
   NAVBAR — Light frosted glass
   ============================================================ */
.navbar {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(232, 229, 224, 0.9) !important;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 1px 0 rgba(232,229,224,0.9), 0 4px 20px rgba(10,10,11,0.07) !important;
}

.navbar-brand {
  color: #0a0a0b !important;
  font-family: 'Syne', system-ui, sans-serif !important;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.navbar-brand span {
  color: var(--accent) !important;
  font-style: normal !important;
  font-weight: 500;
  font-size: inherit;
  opacity: 1;
}

.navbar-nav a {
  color: #4b5563 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.875rem;
  font-weight: 500;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--accent) !important;
  background-color: rgba(245, 68, 29, 0.06) !important;
}

/* Mobile menu: light */
.mobile-menu {
  background: #ffffff !important;
  border-bottom: 1px solid #e8e5e0 !important;
}

.mobile-menu ul li a {
  color: #374151 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  color: var(--accent) !important;
  background: rgba(245, 68, 29, 0.06) !important;
}

.mobile-menu-divider {
  background: #e8e5e0 !important;
}

.hamburger span {
  background: #374151 !important;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-alt {
  background-color: #f9f7f4 !important;
}

.section-heading h2 { color: #0a0a0b; }
.section-heading p  { color: #6b7280; font-family: 'Plus Jakarta Sans', sans-serif; }

/* Animated dot + expanding line decoration */
.section-heading {
  position: relative;
}

.section-heading::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff8a65);
  margin: 0 auto 1.25rem;
  border-radius: 2px;
  animation: lineBreath 3s ease-in-out infinite alternate;
}

@keyframes lineBreath {
  from { width: 36px; opacity: 0.7; }
  to   { width: 64px; opacity: 1; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: #f9f7f4 !important;
  position: relative;
}

/* Remove dark side-line from dark theme */
#about::before { display: none !important; }

.about-avatar {
  background: linear-gradient(135deg, rgba(245,68,29,0.1), rgba(0,87,255,0.08)) !important;
  border: 2px solid rgba(245, 68, 29, 0.18) !important;
  box-shadow: 0 0 0 6px rgba(245,68,29,0.05), 0 16px 48px rgba(10,10,11,0.1) !important;
  animation: avatarPulse 5s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(245,68,29,0.05),  0 16px 48px rgba(10,10,11,0.10); }
  50%       { box-shadow: 0 0 0 14px rgba(245,68,29,0.03), 0 20px 60px rgba(10,10,11,0.14); }
}

.expertise-tag {
  background: rgba(245, 68, 29, 0.07) !important;
  color: #c7330e !important;
  border: 1.5px solid rgba(245, 68, 29, 0.15) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600;
  font-size: 0.8rem;
  transition: background var(--transition), transform var(--transition);
}

.expertise-tag:hover {
  background: rgba(245, 68, 29, 0.12) !important;
  transform: translateY(-2px);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: #ffffff !important;
  border: 1px solid #e8e5e0 !important;
  box-shadow: 0 2px 14px rgba(10,10,11,0.07) !important;
}

.service-card::before {
  background: linear-gradient(90deg, #f5441d, #ff7043, #ffd60a) !important;
}

.service-card:hover {
  border-color: rgba(245, 68, 29, 0.22) !important;
  box-shadow:
    0 18px 52px rgba(10,10,11,0.13),
    0 0 0 1px rgba(245, 68, 29, 0.08) !important;
}

.service-card h3 { color: #0a0a0b !important; }
.service-card p  { color: #6b7280 !important; }

.service-card .service-icon {
  background: rgba(245, 68, 29, 0.07) !important;
  border: 1px solid rgba(245, 68, 29, 0.12) !important;
  color: var(--accent) !important;
}

.service-features li { color: #6b7280 !important; }
.service-features li::before { color: var(--accent) !important; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: #ffffff !important;
  border: 1px solid #e8e5e0 !important;
  box-shadow: 0 2px 10px rgba(10,10,11,0.06) !important;
}

.blog-card:hover {
  border-color: rgba(245, 68, 29, 0.18) !important;
  box-shadow: 0 12px 40px rgba(10,10,11,0.1) !important;
}

.blog-card h3    { color: #0a0a0b !important; }
.blog-card:hover h3 { color: var(--accent) !important; }
.blog-card p     { color: #6b7280 !important; }
.blog-card-date  { color: #9ca3af !important; }

.blog-card-image {
  background: linear-gradient(135deg, #f9f7f4, #f0ede8) !important;
}

/* Blog category badges — crisp light */
.category-badge.blog       { background: #dbeafe !important; color: #1d4ed8 !important; border: none !important; }
.category-badge.case-study { background: rgba(245,68,29,0.1) !important; color: #c7330e !important; border: none !important; }
.category-badge.automation { background: #fce7f3 !important; color: #9d174d !important; border: none !important; }
.category-badge.audit      { background: #fef3c7 !important; color: #92400e !important; border: none !important; }
.category-badge.insights   { background: #ede9fe !important; color: #5b21b6 !important; border: none !important; }

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */
#contact-cta {
  background: #0a0a0b !important;
  border-top: none !important;
  border-bottom: none !important;
  overflow: hidden;
}

#contact-cta::before {
  display: block !important;
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(245, 68, 29, 0.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(0, 87, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  background-size: auto !important;
}

#contact-cta h2 { color: #ffffff !important; }
#contact-cta p  { color: rgba(255,255,255,0.6) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent) !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(245, 68, 29, 0.28) !important;
}

.btn-primary:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 28px rgba(245, 68, 29, 0.42) !important;
  animation: none !important;
}

.btn-outline {
  color: var(--accent) !important;
  border-color: rgba(245, 68, 29, 0.35) !important;
  background: transparent !important;
}

.btn-outline:hover {
  background: rgba(245, 68, 29, 0.07) !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

.btn-outline-white {
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.3) !important;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
  color: #ffffff !important;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  background: #f3f0eb !important;
  border: 1px solid #e8e5e0 !important;
}

.lang-switcher a {
  color: #6b7280 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.lang-switcher a:hover:not(.active) {
  color: #0a0a0b !important;
  background: rgba(10,10,11,0.06) !important;
}

.lang-switcher a.active {
  background: var(--accent) !important;
  color: #ffffff !important;
  font-weight: 700;
}

/* ============================================================
   FORMS
   ============================================================ */
.contact-form-wrapper {
  background: #ffffff !important;
  border: 1px solid #e8e5e0 !important;
  box-shadow: 0 8px 40px rgba(10,10,11,0.09) !important;
}

.form-label {
  color: #111116 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600;
}

.form-control {
  background: #ffffff !important;
  border: 1.5px solid #d1cec8 !important;
  color: #0a0a0b !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.form-control::placeholder { color: #9ca3af !important; }

.form-control:focus {
  background: #ffffff !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(245, 68, 29, 0.1) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a0a0b !important;
  border-top: none !important;
}

.site-footer .footer-bottom {
  border-top-color: rgba(255,255,255,0.08) !important;
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert-success {
  background: #d1fae5 !important;
  color: #065f46 !important;
  border: 1px solid #6ee7b7 !important;
}

.alert-error {
  background: #fee2e2 !important;
  color: #991b1b !important;
  border: 1px solid #fca5a5 !important;
}

.alert-warning {
  background: #fef3c7 !important;
  color: #92400e !important;
  border: 1px solid #fde68a !important;
}

/* ============================================================
   PAGINATION & FILTER TABS
   ============================================================ */
.page-link {
  background: #ffffff !important;
  border-color: #e8e5e0 !important;
  color: #6b7280 !important;
}

.page-link:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: rgba(245,68,29,0.06) !important;
}

.page-link.active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
}

.filter-tab {
  background: #ffffff !important;
  border-color: #e8e5e0 !important;
  color: #6b7280 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.filter-tab:hover {
  border-color: rgba(245,68,29,0.3) !important;
  color: var(--accent) !important;
}

.filter-tab.active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
  font-weight: 700;
}

/* ============================================================
   PROSE (Blog posts)
   ============================================================ */
.prose { color: #374151; }
.prose h1, .prose h2, .prose h3, .prose h4 { color: #0a0a0b !important; }
.prose p, .prose li { color: #374151 !important; }

.prose code {
  background: #f3f0eb !important;
  border-color: #e8e5e0 !important;
  color: var(--accent) !important;
}

.prose pre {
  background: #1a1a1e !important;
  border: none !important;
}

.prose blockquote {
  border-left-color: var(--accent) !important;
  background: rgba(245,68,29,0.05) !important;
}

.prose blockquote p { color: #374151 !important; }
.prose th { background: #f9f7f4 !important; color: #0a0a0b !important; }
.prose th, .prose td { border-color: #e8e5e0 !important; }

/* ============================================================
   CARDS (generic)
   ============================================================ */
.card {
  background: #ffffff !important;
  border-color: #e8e5e0 !important;
  box-shadow: 0 2px 12px rgba(10,10,11,0.07) !important;
}

.card:hover {
  box-shadow: 0 12px 36px rgba(10,10,11,0.12) !important;
}

/* ============================================================
   SCROLLBAR & SELECTION
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f9f7f4; }
::-webkit-scrollbar-thumb {
  background: rgba(245, 68, 29, 0.2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 68, 29, 0.4);
}

::selection {
  background: rgba(245, 68, 29, 0.15);
  color: #0a0a0b;
}

/* ============================================================
   SKIP LINK / MISC
   ============================================================ */
.skip-link {
  background: var(--accent) !important;
  color: #ffffff !important;
}

.breadcrumb { color: #6b7280 !important; }
.breadcrumb a { color: #6b7280 !important; }
.breadcrumb a:hover { color: var(--accent) !important; }
.breadcrumb-sep { color: #d1cec8 !important; }

/* ============================================================
   EXTRA ANIMATION — reveal stagger polish
   ============================================================ */
.reveal {
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Micro-interaction: service icon wiggle on card hover */
.service-card:hover .service-icon {
  animation: iconWiggle 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes iconWiggle {
  0%   { transform: rotate(0deg) scale(1); }
  20%  { transform: rotate(-8deg) scale(1.08); }
  50%  { transform: rotate(5deg) scale(1.12); }
  80%  { transform: rotate(-3deg) scale(1.06); }
  100% { transform: rotate(0deg) scale(1.05); }
}

/* Card entrance shimmer on hover */
.service-card::after,
.blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(245, 68, 29, 0) 0%,
    rgba(245, 68, 29, 0.04) 50%,
    rgba(245, 68, 29, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::after,
.blog-card:hover::after {
  opacity: 1;
}

/* Animated gradient rule in footer brand */
.footer-brand::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #ff8a65);
  margin-top: 0.875rem;
  border-radius: 1px;
  animation: footerLineBreath 4s ease-in-out infinite alternate;
}

@keyframes footerLineBreath {
  from { width: 24px; opacity: 0.6; }
  to   { width: 48px; opacity: 1; }
}
