/* ═══════════════════════════════════════════════════════
   MY NET — Design System
   Palette: Deep navy, Electric cyan accent, Steel mids
═══════════════════════════════════════════════════════ */

:root {
  --navy-deep:   #050E1F;
  --navy-mid:    #0A1A35;
  --navy-light:  #0F2647;
  --cyan:        #00C8FF;
  --cyan-dim:    rgba(0, 200, 255, 0.15);
  --cyan-glow:   rgba(0, 200, 255, 0.35);
  --red-alert:   #FF3D5A;
  --steel:       #8BA7C7;
  --white:       #EEF3FA;
  --white-dim:   rgba(238, 243, 250, 0.65);
  --border:      rgba(139, 167, 199, 0.18);
  --max-w:       1180px;
  --nav-h:       68px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy-deep);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Sections ── */
.section { padding: 6rem 0; }
.section-dark  { background: var(--navy-deep); }
.section-mid   { background: var(--navy-mid); }
.section-contact { background: var(--navy-light); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 0.4rem;
}

/* ── Eyebrow ── */
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy-deep);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,200,255,0.3);
}
.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(238,243,250,0.35);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-full { width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 14, 31, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#navbar.scrolled {
  background: rgba(5, 14, 31, 0.97);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  color: var(--white-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--cyan) !important;
  color: var(--navy-deep) !important;
  font-weight: 700 !important;
  padding: 0.4rem 1rem !important;
}
.nav-cta:hover { background: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero_cibersecurity_floor.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  will-change: transform;
  filter: brightness(0.35) saturate(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 14, 31, 0.85) 0%,
    rgba(0, 38, 71, 0.5) 50%,
    rgba(5, 14, 31, 0.7) 100%
  );
  z-index: 1;
}

/* Radar */
.radar-wrap {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 45vw);
  z-index: 2;
  opacity: 0.35;
}
.radar { width: 100%; height: 100%; }

.r-ring {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 0.8;
  opacity: 0.5;
}
.r1 { animation: ring-pulse 3s ease-in-out infinite; }
.r2 { animation: ring-pulse 3s ease-in-out infinite 0.4s; }
.r3 { animation: ring-pulse 3s ease-in-out infinite 0.8s; }
.r4 { animation: ring-pulse 3s ease-in-out infinite 1.2s; }

.r-cross { stroke: var(--cyan); stroke-width: 0.5; opacity: 0.3; }

.r-sweep { transform-origin: 210px 210px; animation: sweep 4s linear infinite; }
.r-cone { fill: url(#sweepGrad); opacity: 0.25; fill: var(--cyan); }

.r-blip {
  fill: var(--cyan);
  filter: drop-shadow(0 0 4px var(--cyan));
  animation: blip-pulse 2s ease-in-out infinite;
}
.b1 { animation-delay: 0s; }
.b2 { animation-delay: 0.7s; }
.b3 { animation-delay: 1.4s; }

@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}
@keyframes sweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes blip-pulse {
  0%, 100% { opacity: 0.3; r: 4; }
  50%       { opacity: 1;   r: 7; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 2rem 1.5rem;
  margin-left: max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
}

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero-highlight {
  color: var(--cyan);
  border-right: 3px solid var(--cyan);
  animation: cursor-blink 0.8s step-end infinite;
  white-space: nowrap;
}
@keyframes cursor-blink {
  0%, 100% { border-color: var(--cyan); }
  50%       { border-color: transparent; }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   URGENCY BAND
═══════════════════════════════════════════════════════ */
.urgency-band {
  background: linear-gradient(90deg, rgba(255,61,90,0.12), rgba(255,61,90,0.06));
  border-top: 1px solid rgba(255,61,90,0.3);
  border-bottom: 1px solid rgba(255,61,90,0.3);
  padding: 0.85rem 1.5rem;
}
.urgency-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.u-pill {
  background: var(--red-alert);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  white-space: nowrap;
}
.u-link {
  margin-left: auto;
  color: var(--cyan);
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.u-link:hover { opacity: 0.75; }

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.lead-text {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.pill {
  background: var(--cyan-dim);
  border: 1px solid rgba(0,200,255,0.25);
  color: var(--cyan);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
}

.col-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-card.accent {
  border-color: rgba(0,200,255,0.4);
  background: linear-gradient(135deg, rgba(0,200,255,0.06), var(--navy-light));
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
}
.stat-label { font-size: 0.85rem; color: var(--white-dim); }

/* ═══════════════════════════════════════════════════════
   PARALLAX DIVIDERS
═══════════════════════════════════════════════════════ */
.parallax-divider {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-divider::before {
  content: '';
  position: absolute;
  inset: -30%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}
.pd1::before {
  background-image: url("images/cybersecurity_operations_center.jpg");
  filter: brightness(0.25) saturate(0.5);
}
.pd2::before {
  background-image: url("images/hero_cibersecurity_floor.png");
  filter: brightness(0.2) saturate(0.4);
}
.pd-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,14,31,0.5);
  z-index: 1;
}
.pd-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 700px;
}
.pd-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.srv-card {
  background: var(--navy-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.srv-card:hover {
  border-color: rgba(0,200,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.srv-card.featured {
  border-color: rgba(0,200,255,0.5);
  background: linear-gradient(135deg, rgba(0,200,255,0.05), var(--navy-deep));
}
.srv-icon { font-size: 1.8rem; }
.srv-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--cyan);
  color: var(--navy-deep);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}
.srv-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}
.srv-card p { font-size: 0.88rem; color: var(--white-dim); line-height: 1.6; }
.srv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.srv-list li {
  font-size: 0.82rem;
  color: var(--steel);
  padding-left: 1rem;
  position: relative;
}
.srv-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.75rem;
}
.srv-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  transition: opacity 0.2s;
  margin-top: auto;
}
.srv-link:hover { opacity: 0.75; }

/* ═══════════════════════════════════════════════════════
   AUDIENCE
═══════════════════════════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.aud-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.25s;
  position: relative;
}
.aud-card:hover { border-color: rgba(0,200,255,0.3); }
.aud-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--cyan);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}
.aud-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.aud-card p { font-size: 0.88rem; color: var(--white-dim); line-height: 1.65; margin-bottom: 1rem; }
.aud-solution {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--cyan);
}

/* ═══════════════════════════════════════════════════════
   CASES
═══════════════════════════════════════════════════════ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.case-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.25s, transform 0.25s;
}
.case-card:hover {
  border-color: rgba(0,200,255,0.35);
  transform: translateY(-3px);
}
.case-sector {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.case-card h4 { font-size: 1rem; font-weight: 600; }
.case-card p { font-size: 0.85rem; color: var(--white-dim); flex: 1; }
.case-metric {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  color: var(--white-dim);
}
.case-metric span {
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 0.4rem;
}

/* ═══════════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.25s, transform 0.25s;
}
.blog-card:hover {
  border-color: rgba(0,200,255,0.3);
  transform: translateY(-3px);
}
.blog-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,200,255,0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 30px;
  width: fit-content;
}
.blog-card h4 { font-size: 0.97rem; font-weight: 600; line-height: 1.3; }
.blog-card p { font-size: 0.85rem; color: var(--white-dim); flex: 1; }
.blog-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  transition: opacity 0.2s;
}
.blog-link:hover { opacity: 0.75; }

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 0.5rem 0 1rem;
}
.contact-left p { color: var(--white-dim); line-height: 1.7; margin-bottom: 2rem; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-info a, .contact-info span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--white-dim);
  transition: color 0.2s;
}
.contact-info a:hover { color: var(--cyan); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.04em;
}
.form-group label span { color: var(--red-alert); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(139,167,199,0.45); }
.form-group select option { background: var(--navy-light); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(0,200,255,0.04);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  accent-color: var(--cyan);
  cursor: pointer;
}
.form-check label {
  font-size: 0.8rem;
  color: var(--white-dim);
  cursor: pointer;
  line-height: 1.5;
}
.form-check label span { color: var(--red-alert); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--steel);
  margin-top: 0.3rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--steel);
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal        { transform: translateY(28px); }
.reveal-left   { transform: translateX(-28px); }
.reveal-right  { transform: translateX(28px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 2.5rem; }
  .radar-wrap { opacity: 0.2; width: 35vw; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    flex-direction: column; 
    gap: 0;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(5,14,31,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1.5rem; }
  .nav-toggle { display: flex; }

  .hero-bg { background-attachment: scroll; }
  .radar-wrap { display: none; }
  .hero-content { margin-left: 0; padding: 2rem 1.5rem; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .parallax-divider { min-height: 220px; }
  .parallax-divider::before { background-attachment: scroll; }

  .urgency-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .u-link { margin-left: 0; }

  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-ghost, .hero-actions .btn-primary { width: 100%; text-align: center; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
