:root {
  --bg: #0d1117;
  --surface: #161b22;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --text: #f0f6fc;
  --text-muted: #8b949e;
  --success: #22c55e;
  --border: #30363d;

  --max-width: 1200px;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-tag: 6px;
  --gutter: 24px;
  --section-y: 112px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 56px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout primitives ---------- */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-y) 0;
}

.section--surface {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head p {
  color: var(--text-muted);
  margin-top: 16px;
}

.lead {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--outline {
  border-color: var(--border);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--light {
  background: #fff;
  color: #0d1117;
}

.btn--light:hover {
  transform: translateY(-1px);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--lg {
  padding: 16px 32px;
}

.link-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s;
}

.link-ghost:hover {
  border-bottom-color: currentColor;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}

.header.is-scrolled {
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.18s;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--text);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background:
    radial-gradient(900px 480px at 78% 12%, rgba(59, 130, 246, 0.18), transparent 65%),
    radial-gradient(700px 420px at 6% 96%, rgba(59, 130, 246, 0.08), transparent 60%),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.16;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 78%);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.hero__copy h1 {
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero--page {
  padding: 88px 0;
  text-align: center;
}

.hero--page .lead {
  max-width: 640px;
  margin: 24px auto 0;
}

/* ---------- Device mockups ---------- */

.mockups {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
}

.device {
  position: relative;
  flex: 0 0 auto;
  width: 190px;
  padding: 10px;
  background: #1c2430;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.75);
}

.device--tall {
  width: 216px;
  transform: translateY(-28px);
}

.device__screen {
  display: flex;
  flex-direction: column;
  gap: 10px;
  aspect-ratio: 9 / 19;
  padding: 22px 14px 14px;
  background: linear-gradient(170deg, #10161f, #0b0f15);
  border-radius: 22px;
  overflow: hidden;
}

.device--light .device__screen {
  background: linear-gradient(170deg, #f7f9fc, #e8edf4);
}

.screen-bar {
  height: 9px;
  border-radius: 999px;
  background: var(--border);
}

.screen-bar--title {
  width: 62%;
  height: 13px;
  background: var(--accent);
}

.screen-bar--wide {
  width: 100%;
}

.screen-bar--mid {
  width: 78%;
}

.screen-bar--short {
  width: 45%;
}

.device--light .screen-bar {
  background: #cfd8e3;
}

.device--light .screen-bar--title {
  background: var(--accent);
}

.screen-card {
  margin-top: auto;
  padding: 12px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}

.device--light .screen-card {
  background: rgba(59, 130, 246, 0.1);
}

.device__caption {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- Trust strip ---------- */

.trust {
  padding: 32px 0;
  border-block: 1px solid var(--border);
  text-align: center;
}

.trust__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.trust__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust__list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ---------- Cards ---------- */

.grid {
  display: grid;
  gap: var(--gutter);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.card--link:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -24px rgba(59, 130, 246, 0.6);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-size: 22px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 10px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card .link-ghost {
  margin-top: 20px;
  align-self: flex-start;
  font-size: 0.9rem;
}

.center-cta {
  margin-top: 48px;
  text-align: center;
}

/* ---------- Split layouts ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.split--reverse .split__visual {
  order: -1;
}

.split__copy h2 {
  margin-bottom: 20px;
}

.split__copy > p {
  color: var(--text-muted);
}

/* ---------- Check list ---------- */

.checklist {
  display: grid;
  gap: 4px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.checklist li:last-child {
  border-bottom: 0;
}

.checklist__mark {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--success);
  font-weight: 700;
}

/* ---------- Featured project ---------- */

.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  padding: 5px 12px;
  border-radius: var(--radius-tag);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.featured__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ---------- Process steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  counter-reset: step;
}

.steps--3 {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -1px;
  left: 0;
  padding-right: 14px;
  background: var(--bg);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: translateY(-50%);
}

.section--surface .step::before {
  background: var(--surface);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Quote ---------- */

.quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.quote::before {
  content: "“";
  display: block;
  margin-bottom: 8px;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--accent);
}

/* ---------- CTA band ---------- */

.cta-band {
  padding: 88px 0;
  text-align: center;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}

.cta-band h2 {
  margin-bottom: 16px;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-band .link-ghost {
  color: #fff;
}

/* ---------- Anchor tabs / filters ---------- */

.pillbar {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  padding: 16px 0;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.pillbar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  padding: 9px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.pill:hover {
  color: var(--text);
  border-color: var(--accent);
}

.pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---------- Services ---------- */

.service {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.deliverables {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
}

.deliverables li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--accent);
}

.bestfor {
  padding: 18px 20px;
  margin-bottom: 32px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-tag);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

.bestfor strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.usertypes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.process-card {
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.process-card .steps {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.process-card .step::before {
  background: var(--surface);
}

/* ---------- Portfolio ---------- */

.project-card__thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  margin: -32px -32px 24px;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(59, 130, 246, 0.18), transparent 70%),
    #10151d;
}

.project-card__thumb .device {
  width: 108px;
  border-radius: 18px;
  box-shadow: none;
}

.project-card__thumb .device__screen {
  gap: 6px;
  padding: 14px 9px 9px;
  border-radius: 13px;
}

.project-card__thumb .screen-bar {
  height: 6px;
}

.project-card__thumb .screen-bar--title {
  height: 9px;
}

.project-card__thumb .screen-card {
  padding: 7px;
  font-size: 8px;
}

.project-card__meta {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

[hidden] {
  display: none !important;
}

.results {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.results li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
}

.subhead {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.casestudy__body > * + .subhead {
  margin-top: 28px;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: start;
  gap: 64px;
}

.form {
  display: grid;
  gap: 24px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.field {
  display: grid;
  gap: 8px;
}

.field--half {
  grid-template-columns: 1fr;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field label,
.fieldset legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.field label .opt,
.fieldset legend .opt {
  margin-left: 6px;
  font-weight: 400;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.18s;
}

.field textarea {
  resize: vertical;
  min-height: 118px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #5c6672;
}

.fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.fieldset legend {
  padding: 0;
  margin-bottom: 14px;
}

.choices {
  display: grid;
  gap: 10px;
}

.choices--cols {
  grid-template-columns: 1fr 1fr;
}

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
  cursor: pointer;
}

.choice input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  cursor: pointer;
}

.choice:hover {
  color: var(--text);
}

.form__note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.form__status {
  padding: 14px 16px;
  border-radius: var(--radius-btn);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  font-size: 14.5px;
}

.form__status--error {
  background: rgba(248, 81, 73, 0.1);
  border-color: rgba(248, 81, 73, 0.35);
  color: #ff9d96;
}

.form__status[hidden] {
  display: none;
}

.info-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.info-card + .info-card {
  margin-top: 24px;
}

.info-card h3 {
  margin-bottom: 20px;
  font-size: 1.15rem;
}

.info-list {
  display: grid;
  gap: 16px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.info-list strong {
  display: block;
  color: var(--text);
  font-weight: 600;
}

/* ---------- Footer ---------- */

.footer {
  padding: 72px 0 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px var(--gutter);
}

.footer__tagline {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer h3 {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.footer ul {
  display: grid;
  gap: 12px;
}

.footer a:not(.logo) {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.18s;
}

.footer a:not(.logo):hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  :root {
    --section-y: 72px;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    background: rgba(13, 17, 23, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav:not(.is-open) {
    display: none;
  }

  .nav__link {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav .btn {
    margin-top: 20px;
    justify-content: center;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__grid,
  .split,
  .featured,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .split--reverse .split__visual {
    order: 0;
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px var(--gutter);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --section-y: 56px;
  }

  body {
    font-size: 16px;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .grid--4,
  .grid--3,
  .grid--2,
  .steps,
  .steps--3,
  .process-card .steps,
  .field-row,
  .choices--cols,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .featured,
  .process-card {
    padding: 28px;
  }

  .form {
    padding: 24px;
  }

  .device--tall {
    transform: none;
  }

  .mockups {
    gap: 16px;
  }

  .device {
    width: 148px;
  }

  .device--tall {
    width: 168px;
  }

  .footer__bottom {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
