/* =========================================================================
   Bordcrew — style.css
   Single stylesheet for all 5 pages (index, privacy, imprint, terms, eula).
   Plain CSS3 only — no preprocessor, no build step.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. CSS Custom Properties (design tokens)
   ------------------------------------------------------------------------- */
:root {
  /* Bordcrew color palette */
  --color-navy:  #0D2B4E;
  --color-teal:  #1A7F8E;
  --color-white: #FFFFFF;
  --color-bg:    #F5F7FA;

  /* Typography */
  --font-body: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-size-base:        1rem;   /* 16px */
  --font-size-h1:          2rem;   /* 32px mobile */
  --font-size-h1-desktop:  3rem;   /* 48px tablet+ */

  /* Spacing (8pt grid) */
  --space-xs:  0.5rem;  /*  8px */
  --space-sm:  1rem;    /* 16px */
  --space-md:  1.5rem;  /* 24px */
  --space-lg:  2rem;    /* 32px */
  --space-xl:  3rem;    /* 48px */
  --space-2xl: 4rem;    /* 64px */

  /* Layout */
  --max-width:     1200px;
  --border-radius: 8px;
}

/* -------------------------------------------------------------------------
   2. Base reset
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-navy);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------
   3. .container — layout container (Mobile-First)
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);    /* 16px */
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-md);  /* 24px */
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-lg);  /* 32px */
  }
}

/* -------------------------------------------------------------------------
   4. .site-header — shared header (all 5 pages)
   ------------------------------------------------------------------------- */
.site-header {
  background-color: var(--color-white);
  height: 56px;
  border-bottom: 1px solid rgba(13, 43, 78, 0.1);
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.site-header__logo {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 18px;
  text-decoration: none;
}

.site-header__logo:hover {
  text-decoration: none;
  color: var(--color-teal);
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  font-size: 12px;
}

@media (min-width: 768px) {
  .site-header__nav {
    gap: var(--space-md);
    font-size: 14px;
  }
}

.site-header__nav a {
  color: var(--color-navy);
  font-size: 14px;
  padding: 8px 4px;
  transition: color 0.15s ease;
}

.site-header__nav a:hover {
  color: var(--color-teal);
  text-decoration: underline;
}

/* -------------------------------------------------------------------------
   5. .hero — index.html only (CSS-only gradient, no image)
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px var(--space-sm) 80px;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-teal) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 20%, rgba(255,255,255,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: var(--space-lg);
}

.hero__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

.hero__tagline {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto var(--space-xl);
}

.hero__cta {
  display: inline-block;
  background: #fff;
  color: var(--color-navy);
  padding: 0.875rem 2.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  text-decoration: none;
  color: var(--color-navy);
}

.hero__cta--disabled {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.hero__cta-subtitle {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  margin-top: var(--space-sm);
  letter-spacing: 0.03em;
}

/* -------------------------------------------------------------------------
   6. .legal-page + .legal-content — legal subpages
   ------------------------------------------------------------------------- */
.legal-page {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .legal-content h1 {
    font-size: var(--font-size-h1-desktop);
  }
}

.legal-content h2 {
  font-size: 1.25rem;        /* 20px */
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  border-bottom: 1px solid rgba(13, 43, 78, 0.15);
  padding-bottom: var(--space-xs);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-sm);
}

.legal-content p.placeholder,
.placeholder {
  color: rgba(13, 43, 78, 0.4);
  font-style: italic;
}

/* -------------------------------------------------------------------------
   7. .site-footer — shared footer (all 5 pages)
   ------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-md) 0;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.site-footer__inner p {
  color: var(--color-white);
}

.site-footer nav {
  display: flex;
  gap: var(--space-md);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* -------------------------------------------------------------------------
   9. Features section
   ------------------------------------------------------------------------- */
.features {
  padding: var(--space-2xl) 0 calc(var(--space-2xl) + var(--space-lg));
  background: var(--color-white);
}

.features__eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.features__heading {
  color: var(--color-navy);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.features__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.features__item {
  background: var(--color-bg);
  border-radius: 12px;
  padding: var(--space-lg);
  border-top: 3px solid var(--color-teal);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.features__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 43, 78, 0.08);
}

.features__item h3 {
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.features__item p {
  color: #4a5568;
  font-size: 0.875rem;
  line-height: 1.65;
}

/* -------------------------------------------------------------------------
   Shared section typography (index.html redesign)
   ------------------------------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--color-navy);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: #5a6a7e;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

/* -------------------------------------------------------------------------
   Sticky header variant
   ------------------------------------------------------------------------- */
.site-header--sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(13,43,78,0.08);
}

.site-header__nav-link--page {
  font-weight: 600;
  color: var(--color-teal) !important;
}

/* -------------------------------------------------------------------------
   Stat bar
   ------------------------------------------------------------------------- */
.stat-bar {
  background: var(--color-navy);
  padding: var(--space-md) 0;
}

.stat-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.stat-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-bar__number {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-bar__label {
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

@media (max-width: 767px) {
  .stat-bar__divider { display: none; }
  .stat-bar__inner { gap: var(--space-lg); }
}

/* -------------------------------------------------------------------------
   Phases section
   ------------------------------------------------------------------------- */
.phases {
  padding: var(--space-2xl) 0 calc(var(--space-2xl) + var(--space-lg));
  background: var(--color-bg);
  text-align: center;
}

.phases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
  text-align: left;
}

.phase-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: var(--space-lg);
  border: 1.5px solid rgba(13,43,78,0.07);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.phase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(13,43,78,0.1);
}

.phase-card--accent {
  border-color: var(--color-teal);
  background: linear-gradient(145deg, rgba(26,127,142,0.05) 0%, var(--color-white) 60%);
}

.phase-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.phase-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(26,127,142,0.15);
  line-height: 1;
  letter-spacing: -0.04em;
}

.phase-card--accent .phase-card__num {
  color: rgba(26,127,142,0.3);
}

.phase-card__icon {
  font-size: 2rem;
}

.phase-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.phase-card__desc {
  color: #5a6a7e;
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.phase-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(13,43,78,0.07);
  padding-top: var(--space-sm);
  margin-top: var(--space-xs);
}

.phase-card__features li {
  font-size: 0.8rem;
  color: var(--color-navy);
  padding-left: 1.25rem;
  position: relative;
  font-weight: 500;
}

.phase-card__features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 700;
}

/* -------------------------------------------------------------------------
   Spotlight sections
   ------------------------------------------------------------------------- */
.spotlight {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.spotlight--alt {
  background: var(--color-bg);
}

.spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--space-2xl) + var(--space-lg));
  align-items: center;
}

.spotlight__inner--reverse {
  direction: rtl;
}

.spotlight__inner--reverse > * {
  direction: ltr;
}

@media (max-width: 860px) {
  .spotlight__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .spotlight__inner--reverse { direction: ltr; }
  .spotlight__visual { order: -1; }
}

.spotlight__text .eyebrow {
  margin-bottom: var(--space-xs);
}

.spotlight__text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .spotlight__text h2 { font-size: 2.1rem; }
}

.spotlight__text p {
  color: #5a6a7e;
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 480px;
}

.spotlight__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spotlight__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
}

.spotlight__list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-teal);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Mock screen visual */
.spotlight__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-screen {
  width: 100%;
  max-width: 320px;
  background: var(--color-navy);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,43,78,0.28);
}

.mock-screen__bar {
  height: 44px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.mock-screen__bar::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  box-shadow: 14px 0 0 rgba(255,255,255,0.15);
}

.mock-screen__content {
  padding: 20px 18px 28px;
  min-height: 220px;
}

/* Map mock */
.mock-map {
  background: rgba(26,127,142,0.12);
  border-radius: 14px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mock-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,127,142,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,127,142,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.mock-map__track {
  position: absolute;
  width: 65%;
  height: 3px;
  background: var(--color-teal);
  border-radius: 99px;
  top: 52%;
  left: 15%;
  transform: rotate(-12deg);
  box-shadow: 0 0 8px rgba(26,127,142,0.5);
}

.mock-map__dot {
  position: absolute;
  right: 28px;
  top: 38%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(26,127,142,0.25);
}

.mock-map__label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,127,142,0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

/* Chat mock */
.mock-screen__content--chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.mock-chat {
  padding: 8px 13px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 500;
  max-width: 82%;
  line-height: 1.4;
}

.mock-chat--received {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.mock-chat--sent {
  background: var(--color-teal);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Vote mock */
.mock-screen__content--vote {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-vote-title {
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mock-vote-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 6px;
  align-items: center;
}

.mock-vote-name {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  grid-column: 1;
  grid-row: 1;
}

.mock-vote-track {
  grid-column: 1;
  grid-row: 2;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  height: 7px;
  overflow: hidden;
}

.mock-vote-bar {
  height: 100%;
  background: var(--color-teal);
  border-radius: 99px;
  transition: width 0.3s ease;
}

.mock-vote-bar--dim {
  background: rgba(26,127,142,0.4);
}

.mock-vote-count {
  grid-column: 2;
  grid-row: 1 / 3;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 700;
  align-self: center;
}

/* -------------------------------------------------------------------------
   All features grid
   ------------------------------------------------------------------------- */
.all-features {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
  text-align: center;
}

.all-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.feat-tile {
  background: var(--color-white);
  border-radius: 14px;
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  border: 1.5px solid rgba(13,43,78,0.07);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feat-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,43,78,0.09);
}

.feat-tile__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 10px;
}

.feat-tile h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.feat-tile p {
  font-size: 0.74rem;
  color: #6b7f96;
  line-height: 1.45;
}

/* -------------------------------------------------------------------------
   USP section
   ------------------------------------------------------------------------- */
.usp-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
  text-align: center;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
  text-align: left;
}

.usp-card {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: 14px;
  border: 1.5px solid rgba(13,43,78,0.07);
  transition: border-color 0.15s ease;
}

.usp-card:hover {
  border-color: rgba(26,127,142,0.3);
}

.usp-card__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.usp-card h4 {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.usp-card p {
  font-size: 0.825rem;
  color: #5a6a7e;
  line-height: 1.55;
  margin: 0;
}

/* -------------------------------------------------------------------------
   Download CTA section
   ------------------------------------------------------------------------- */
.download-cta {
  padding: var(--space-2xl) 0 calc(var(--space-2xl) + var(--space-lg));
  background: var(--color-navy);
  text-align: center;
}

.download-cta__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-sm);
  display: block;
}

.download-cta__title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .download-cta__title { font-size: 2.75rem; }
}

.download-cta__subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* -------------------------------------------------------------------------
   9. :focus-visible — keyboard navigation (WCAG 2.4.7)
   ------------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   10. prefers-reduced-motion — accessibility (WCAG 2.3.3)
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
