:root {
  --bg: #000000;
  --card: #0f1113;
  --muted: #99a0a6;
  --red: #e50914;
  --accent: linear-gradient(90deg, var(--red), #ff385c);
  --glass: rgba(255, 255, 255, 0.03);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  font-family: 'Montserrat', Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(ellipse at 20% 10%, rgba(229, 9, 20, 0.03), transparent 10%), var(--bg);
  color: #e6e6e6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ============= HEADER ============= */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-wrapper {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo {
  width: 72%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(19%) sepia(98%) saturate(7367%) hue-rotate(356deg) brightness(102%) contrast(116%);
  -webkit-filter: brightness(0) saturate(100%) invert(19%) sepia(98%) saturate(7367%) hue-rotate(356deg) brightness(102%) contrast(116%);
}

.logo-wrapper::after {
  content: '';
  position: absolute;
  inset: -5px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.3) 0%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-wrapper::after {
  opacity: 1;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #fd0000;
  font-size: 49px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-left: -11px;
}

/* ============= NAVIGATION ============= */
.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: #fff;
  background: transparent;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 36%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.nav-cta + .nav-cta {
  margin-left: 6px;
}

.btn-primary-link {
  background: var(--red);
  box-shadow: none;
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-primary-link i {
  color: #fff;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============= BUTTONS ============= */
.btn {
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  text-decoration: none;
  display: inline-block;
}

.btn i {
  margin-right: 8px;
  vertical-align: middle;
  color: #fff;
}

.btn .btn-text {
  color: #fff;
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #c90612;
  box-shadow: 0 12px 30px rgba(201, 6, 18, 0.18);
}

.btn.no-shadow {
  box-shadow: none !important;
}

.btn.no-shadow:hover {
  box-shadow: none !important;
  transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-secondary:hover {
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.1);
  transform: translateY(-2px);
}

/* ============= MAIN BANNER ============= */
.main-banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.35);
}

.banner-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.85));
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 900px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 4px 20px rgb(0, 0, 0);
  line-height: 1.2;
}

.banner-header p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.banner-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.banner-icons {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.streaming-logo {
  width: 128px;
  height: 128px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  transition: transform 0.22s ease;
}

.streaming-logo:hover {
  transform: translateY(-5px) scale(1.03);
  background: transparent;
}

.streaming-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============= SECTIONS ============= */
.welcome-section,
.about-section,
.features-section {
  padding: 5rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.welcome-section.in-view,
.about-section.in-view,
.features-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.welcome-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg), rgba(15, 17, 19, 0.5));
}

.welcome-section h2,
.about-section h2,
.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 800;
}

.welcome-section p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-section {
  text-align: center;
}

.about-section p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============= FEATURES SECTION ============= */
.features-section {
  background: linear-gradient(180deg, rgb(0, 0, 0), var(--bg));
  margin-top: -140px;
  padding-top: 8rem;
}

.features-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 340ms cubic-bezier(.16, .84, .24, 1), box-shadow 340ms cubic-bezier(.16, .84, .24, 1), opacity 300ms ease;
  opacity: 0;
  transform: translateY(26px);
  will-change: transform, box-shadow;
}

.feature-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--red);
  box-shadow: 0 28px 60px rgba(229, 9, 20, 0.22);
  background: linear-gradient(135deg, rgba(255, 64, 64, 0.06), rgba(255, 255, 255, 0.02));
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.18);
  transition: transform 300ms cubic-bezier(.16, .84, .24, 1), box-shadow 300ms cubic-bezier(.16, .84, .24, 1);
}

.feature-card:hover .feature-icon {
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 26px 50px rgba(229, 9, 20, 0.28);
}

.feature-icon svg,
.feature-icon i {
  width: 34px;
  height: 34px;
  fill: #fff;
  color: #fff;
  display: block;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #fff;
  font-weight: 700;
}

.feature-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============= MODALS - DESIGN PROFESSIONNEL ============= */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: linear-gradient(145deg, #000, #08080a);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  padding: 32px 28px;
  max-width: 420px;
  width: 94%;
  min-width: 280px;
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.16, .84, .24, 1), opacity 200ms ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.modal-dialog--tall {
  max-width: 460px;
}

.modal.open .modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-content {
  position: relative;
  color: #eaeaea;
}

/* Modal Header - Design épuré */
.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.12), rgba(229, 9, 20, 0.08));
  border-radius: 10px;
  color: var(--red);
  font-size: 20px;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.modal-close {
  position: absolute;
  top: -20px;
  right: -16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover,
.modal-close:focus {
  background: rgba(229, 9, 20, 0.12);
  border-color: rgba(229, 9, 20, 0.3);
  color: var(--red);
  transform: scale(1.05);
}

/* Modal Form - Design moderne */
.modal-form {
  margin-top: 0;
}

.form-row {
  margin-bottom: 18px;
}

.modal-form label {
  display: block;
  margin-bottom: 8px;
  color: #d0d0d0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.input-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a0a0a;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid #1a1a1a;
  transition: all 0.2s ease;
}

.input-with-icon:focus-within {
  background: #0f0f0f;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.08);
}

.input-with-icon i {
  color: #666;
  width: 18px;
  text-align: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.input-with-icon:focus-within i {
  color: var(--red);
}

.input-with-icon input {
  background: transparent;
  border: none;
  color: #fff;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  outline: none;
}

.input-with-icon input::placeholder {
  color: #555;
}

.password-toggle {
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 16px;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.15s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--red);
}

.password-toggle:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
}

.form-note {
  font-size: 11.5px;
  color: #777;
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.form-message {
  margin-top: 14px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 8px;
  min-height: 18px;
  transition: all 0.2s ease;
}

.form-message.error {
  color: #ff5555;
  background: rgba(255, 85, 85, 0.08);
  border: 1px solid rgba(255, 85, 85, 0.15);
}

.form-message.success {
  color: #4caf50;
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.15);
}

/* Captcha - Design épuré et professionnel */
.captcha-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#captcha-img {
  height: 58px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 1.5px solid #1a1a1a;
  background: #0a0a0a;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

#captcha-img:hover {
  border-color: rgba(229, 9, 20, 0.3);
  transform: scale(1.005);
}

.captcha-input-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

#su-captcha {
  flex: 1;
  min-width: 140px;
  background: #0a0a0a;
  color: #e6e6e6;
  border: 1.5px solid #1a1a1a;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  font-family: 'Courier New', monospace;
}

#su-captcha::placeholder {
  color: #555;
  font-weight: 500;
  letter-spacing: normal;
  font-family: 'Montserrat', sans-serif;
}

#su-captcha:focus {
  border-color: var(--red);
  background: #0f0f0f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.08);
}

#captcha-refresh {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 8px;
  background: #0a0a0a;
  border: 1.5px solid #1a1a1a;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  transition: all 0.25s ease;
}

#captcha-refresh:hover {
  background: #0f0f0f;
  border-color: var(--red);
  color: var(--red);
  transform: rotate(180deg);
}

#captcha-refresh:active {
  transform: rotate(180deg) scale(0.92);
}

.modal-footer {
  margin-top: 24px;
  display: flex;
  gap: 10px;
}

.modal .btn {
  width: 100%;
  padding: 13px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #1a1a1a;
  color: #fff;
  border: 1.5px solid #232323;
  transition: all 0.2s ease;
}

.modal .btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.2);
}

.modal .btn-primary:hover,
.modal .btn-primary:focus {
  background: #c90612;
  border-color: #c90612;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
}

/* ============= FOOTER ============= */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
  background: rgba(0, 0, 0, 0.8);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
  gap: 1rem;
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: all 180ms ease;
}

.socials a:hover {
  background: rgba(229, 9, 20, 0.12);
  transform: translateY(-3px);
  color: #fff;
}

/* ============= RESPONSIVE DESIGN ============= */

/* Tablets */
@media (max-width: 992px) {
  .banner-header h1 {
    font-size: 2.8rem;
  }
  
  .banner-header p {
    font-size: 1.1rem;
  }
  
  .welcome-section h2,
  .about-section h2,
  .features-section h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .header-inner {
    height: 70px;
  }
  
  .logo-text {
    font-size: 24px;
  }
  
  .logo-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 7, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav.active {
    max-height: 300px;
  }
  
  .nav a {
    width: 100%;
    padding: 20px 30px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav a::after {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .main-banner {
    height: 100vh;
    min-height: 600px;
  }
  
  .banner-header h1 {
    font-size: 2.2rem;
  }
  
  .banner-header p {
    font-size: 1rem;
  }
  
  .banner-buttons {
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .streaming-logo {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
  
  .welcome-section,
  .about-section,
  .features-section {
    padding: 3rem 0;
  }
  
  .welcome-section h2,
  .about-section h2,
  .features-section h2 {
    font-size: 1.8rem;
  }
  
  .welcome-section p,
  .about-section p {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .modal-dialog {
    width: 92%;
    padding: 28px 22px;
  }

  .modal-header {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .modal-close {
    top: -11px;
    right: -9px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .logo-wrapper {
    width: 35px;
    height: 35px;
  }
  
  .banner-header h1 {
    font-size: 1.8rem;
  }
  
  .banner-header p {
    font-size: 0.95rem;
  }
  
  .streaming-logo {
    width: 45px;
    height: 45px;
    font-size: 12px;
  }
  
  .welcome-section h2,
  .about-section h2,
  .features-section h2 {
    font-size: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }

  .modal-dialog {
    padding: 24px 18px;
  }

  .modal-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Accessibility: keep focus visible but without the large red box */
a:focus,
button:focus {
  outline: none;
  box-shadow: none;
  outline-offset: 0;
}

/* Nav links: remove background/focus box, keep only the small red underline on focus/active */
.nav a:focus,
.nav a:active {
  background: transparent;
  color: #fff;
  box-shadow: none;
  outline: none;
}
.nav a:focus::after,
.nav a:active::after,
.nav a:focus:hover::after {
  width: 36%;
}

.nav-cta:focus,
.nav-cta:active {
  background: transparent;
  outline: none;
  box-shadow: none;
}

/* Apply subtle focus/active styles site-wide for buttons and interactive controls */
.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary:active,
.btn-secondary:focus,
.btn-secondary:active,
.modal-close:focus,
.modal-close:active,
.password-toggle:focus,
.password-toggle:active,
.mobile-menu-btn:focus,
.mobile-menu-btn:active,
.row-arrow:focus,
.row-arrow:active {
  outline: none;
  box-shadow: none;
  transform: none;
}

/* For keyboard users, show a slightly stronger, yet still discrete ring */
.btn:focus-visible,
.nav a:focus-visible,
.nav-cta:focus-visible,
.modal-close:focus-visible,
.password-toggle:focus-visible,
.mobile-menu-btn:focus-visible {
  box-shadow: none;
}

/* Smooth animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}