/* =============================================
   DESIGN SYSTEM — Based on design.md principles
   Inter font · Clean · Accessible · Token-driven
   ============================================= */

:root {
  /* Brand Colors */
  --primary-blue: #2563EB;
  --primary-purple: #7C3AED;
  --primary-teal: #0D9488;
  --primary-orange: #EA580C;
  --primary-pink: #DB2777;

  /* Neutral Surface Tokens */
  --dark: #0F172A;
  --dark-light: #1E293B;
  --gray: #64748B;
  --gray-light: #CBD5E1;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --surface-muted: #F1F5F9;

  /* Gradients */
  --gradient-1: linear-gradient(135deg, #2563EB, #7C3AED);
  --gradient-2: linear-gradient(135deg, #0D9488, #2563EB);
  --gradient-3: linear-gradient(135deg, #EA580C, #DB2777);
  --gradient-4: linear-gradient(135deg, #7C3AED, #DB2777);

  /* Typography — Inter scale from design.md */
  --font-family: 'Inter', system-ui, sans-serif;
  --font-size-base: 18px;
  --font-weight-base: 400;
  --line-height-base: 1.7;

  /* Spacing — design.md scale */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;

  /* Radius — design.md tokens */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows — design.md tokens */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.14), 0 8px 16px rgba(0,0,0,0.08);

  /* Motion — design.md durations */
  --motion-instant: 120ms;
  --motion-fast: 180ms;
  --motion-normal: 200ms;
  --motion-slow: 250ms;
  --motion-slower: 300ms;

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--dark);
  background: var(--white);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  transition: background-color var(--motion-normal) ease, color var(--motion-normal) ease;
}

/* ===== GLOBAL FOCUS-VISIBLE (design.md: keyboard-first) ===== */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

/* DARK THEME */
body.dark-theme {
  background: var(--dark);
  color: var(--white);
}

body.dark-theme .new-nav {
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-theme .new-nav.scrolled {
  background: rgba(15, 23, 42, 0.98);
}

body.dark-theme .new-nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
}

body.dark-theme .nav-menu a {
  color: var(--white);
}

body.dark-theme .hero-subtitle {
  color: var(--gray-light);
}

body.dark-theme .hero-card {
  background: var(--dark-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

body.dark-theme .hero-card p {
  color: var(--gray-light);
}

body.dark-theme .btn-secondary {
  background: var(--dark-light);
  color: var(--white);
  border-color: var(--gray);
}

body.dark-theme .btn-secondary:hover {
  background: whitesmoke;
  border-color: var(--primary-blue);
}

/* NEW NAVIGATION - Glassmorphism Style */
.new-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--motion-slow) ease, box-shadow var(--motion-slow) ease;
}

.new-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

/* Theme Toggle — all states */
.theme-toggle {
  background: none;
  border: 2px solid var(--gray-light);
  color: var(--gray);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--motion-normal) ease;
  margin-left: var(--spacing-sm);
}

.theme-toggle:hover {
  background: var(--surface-muted);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: rotate(20deg);
}

.theme-toggle:active {
  transform: rotate(180deg) scale(0.9);
}

.theme-toggle:focus-visible {
  box-shadow: var(--focus-ring);
}

body.dark-theme .theme-toggle {
  border-color: rgba(255,255,255,0.2);
  color: var(--gray-light);
}

body.dark-theme .theme-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary-purple);
  color: var(--primary-purple);
}

/* Logo styles */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  border-radius: 16px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-logo-img:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

/* Dark mode — screen blend makes white bg vanish on dark nav */
body.dark-theme .nav-logo-img {
  mix-blend-mode: screen;
  background: none;
  padding: 0;
  border-radius: 16px;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
}

.nav-menu a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color var(--motion-fast) ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width var(--motion-normal) ease;
  border-radius: 2px;
}

.nav-menu a:hover { color: var(--primary-blue); }
.nav-menu a:hover::after { width: 100%; }

.nav-menu a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

.nav-cta {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--dark);
  padding: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

body.dark-theme .mobile-menu-toggle {
  color: var(--white);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  padding: var(--spacing-xl) var(--spacing-lg);
  transition: right 0.3s ease;
  overflow-y: auto;
}

body.dark-theme .mobile-menu {
  background: var(--dark-light);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--dark);
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-theme .mobile-menu-close {
  color: var(--white);
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-items li {
  margin-bottom: var(--spacing-md);
}

.mobile-menu-items a {
  color: var(--dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) 0;
  transition: all 0.3s ease;
}

.mobile-menu-items a i {
  font-size: 18px;
  width: 24px;
  color: var(--primary-blue);
}

body.dark-theme .mobile-menu-items a {
  color: var(--white);
}

.mobile-menu-items a:hover {
  color: var(--primary-blue);
}

.mobile-menu-cta {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--gray-light);
}

body.dark-theme .mobile-menu-cta {
  border-top-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===== HERO SECTION ===== */
.new-hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 70px;
  padding: 160px 5% 90px;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  min-height: 100vh;
}

.hero-content { padding-top: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 28px;
  animation: slideDown 0.6s ease-out;
}

.hero-title {
  font-size: 78px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--dark);
  margin-bottom: 28px;
  max-width: 650px;
  animation: slideUp 0.8s ease-out;
}

.gradient-text {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 680px;
  margin-bottom: 40px;
  animation: slideUp 1s ease-out;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: slideUp 1.2s ease-out;
}

.hero-visual { width: 100%; animation: fadeIn 1s ease-out; }

.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hero-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 35px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all var(--motion-normal) ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.hero-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.hero-card h4 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.hero-card p  { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* NEW FEATURE: PROMOTIONAL BANNER */
.promo-banner {
  background: var(--gradient-3);
  color: white;
  padding: var(--spacing-md) var(--spacing-lg);
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  overflow: hidden;
  animation: slideDown 0.6s ease-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 3s infinite;
  pointer-events: none;
}

.promo-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.promo-text {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  justify-content: center;
}

.promo-icon {
  font-size: 20px;
  animation: bounce 2s infinite;
}

.promo-highlight {
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promo-cta {
  background: white;
  color: var(--primary-orange);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.promo-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.promo-cta i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.promo-cta:hover i {
  transform: translateX(4px);
}

/* Close button for promo banner */
.promo-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.promo-close i {
  pointer-events: none;
}

.promo-close:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.15);
}

.promo-close:active {
  transform: translateY(-50%) scale(0.9);
  background: rgba(255, 255, 255, 0.5);
}

.promo-banner.hidden {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

/* ADDITIONAL DARK THEME STYLES */
body.dark-theme .hero-badge {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
  border-color: rgba(37, 99, 235, 0.4);
}

body.dark-theme .hero-card h4 { color: var(--white); }

body.dark-theme .promo-banner {
  background: var(--gradient-4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-theme .promo-close { background: rgba(255, 255, 255, 0.15); }
body.dark-theme .promo-close:hover { background: rgba(255, 255, 255, 0.25); }

/* Remove default margins */
h1, h2, h3, h4, h5, h6, p, ul, ol { margin: 0; padding: 0; }
section { margin: 0; }

/* ===== BUTTONS — all states per design.md ===== */
.btn {
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all var(--motion-normal) ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  letter-spacing: -0.01em;
}

.btn i {
  font-size: 14px;
  transition: transform var(--motion-fast) ease;
}

.btn:hover i { transform: translateX(4px); }

/* Primary */
.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37,99,235,0.2);
}

.btn-primary:focus-visible {
  box-shadow: var(--focus-ring), 0 4px 16px rgba(37,99,235,0.25);
}

.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Secondary */
.btn-secondary {
  background: white;
  color: var(--dark);
  border-color: var(--gray-light);
}

.btn-secondary:hover {
  background: var(--surface-muted);
  border-color: var(--gray);
}

.btn-secondary:active {
  background: var(--gray-light);
}

.btn-secondary:focus-visible {
  box-shadow: var(--focus-ring);
}

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
}

/* ANIMATIONS */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shine {
  to {
    left: 100%;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* =============================================
   RESPONSIVE — Single consolidated block
   ============================================= */

/* ===== TABLET (≤1100px) ===== */
@media (max-width: 1100px) {
  .new-hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 130px 5% 70px;
  }

  .hero-title { font-size: 60px; }
  .hero-subtitle { font-size: 20px; }
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {

  /* NAV */
  .new-nav { top: 0; padding: 0; }

  .nav-container {
    height: 80px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo-img { height: 72px; }
  .nav-menu { display: none; }

  .nav-cta .btn-primary { display: none; }
  .nav-cta .btn { display: none; }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-blue);
    font-size: 20px;
    cursor: pointer;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-left: 8px;
  }

  /* PROMO BANNER */
  .promo-banner { padding: 10px 16px; }
  .promo-content { flex-direction: column; gap: 6px; }
  .promo-text { font-size: 13px; text-align: center; }
  .promo-highlight { font-size: 14px; padding: 3px 10px; }
  .promo-cta { padding: 8px 16px; font-size: 13px; }
  .promo-close { width: 30px; height: 30px; font-size: 14px; right: 8px; }

  /* HERO — top offset = banner (~44px) + nav (80px) = 124px */
  .new-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 136px 20px 80px;
    margin: 0 auto;
    min-height: auto;
  }

  .hero-content { padding-top: 0; }

  .hero-badge {
    font-size: 13px;
    padding: 10px 16px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 15px;
  }

  .btn-large { padding: 15px 20px; font-size: 16px; }

  .hero-image-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hero-card {
    padding: 20px;
    border-radius: 20px;
  }

  .hero-card-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .hero-card h4 { font-size: 16px; margin-bottom: 6px; }
  .hero-card p  { font-size: 13px; }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {

  .nav-container { height: 72px; padding: 0 14px; }
  .nav-logo-img { height: 60px; }
  .theme-toggle { width: 32px; height: 32px; font-size: 15px; }

  .new-hero { padding: 110px 16px 80px; gap: 28px; }

  .hero-title { font-size: 34px; letter-spacing: -1.5px; }
  .hero-subtitle { font-size: 16px; }

  .hero-badge { width: 100%; justify-content: center; font-size: 12px; }

  .hero-image-grid { grid-template-columns: 1fr; gap: 12px; }

  .hero-card { padding: 18px; }
  .hero-card h4 { font-size: 15px; }

  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; }

  .stats-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }

  .promo-text { font-size: 12px; }
  .promo-highlight { font-size: 13px; }
}

/* ===== BODY FIX — single source of truth ===== */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background: var(--white);
  overflow-x: hidden;
}

html { overflow-x: hidden; }

/* Promo banner hidden state */
.promo-banner.hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

/* Smooth transitions for theme */
body,
.new-nav,
.hero-card,
.service-card-new,
.portfolio-card-new,
.testimonial-card,
.process-step-content,
.contact-form-new,
.contact-card-new,
.form-group-new input,
.form-group-new textarea {
  transition: background-color var(--motion-normal) ease,
              color var(--motion-normal) ease,
              border-color var(--motion-normal) ease;
}