:root {
  --bg: #0d0d0f;
  --bg-2: #171417;
  --panel: rgba(27, 25, 28, 0.78);
  --panel-strong: rgba(34, 31, 35, 0.94);
  --text: #f5f0ec;
  --muted: #a99f9a;
  --soft: #ddd3ce;
  --line: rgba(245, 240, 236, 0.09);
  --line-strong: rgba(245, 240, 236, 0.16);
  --accent: #f27f6d;
  --accent-2: #f4b49f;
  --accent-light: #ffd4c7;
  --danger: #e56f6f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1160px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(242, 127, 109, 0.09), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(244, 180, 159, 0.06), transparent 26%),
    linear-gradient(135deg, var(--bg), var(--bg-2) 58%, #0a090b);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 12%, rgba(242, 127, 109, 0.055), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(244, 180, 159, 0.035), transparent 28%);
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-shell::before {
  content: "";
  position: absolute;
  top: -18px;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  height: min(980px, 100vh);
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(13, 13, 15, 0.99) 0%,
      rgba(13, 13, 15, 0.96) 26%,
      rgba(13, 13, 15, 0.74) 48%,
      rgba(13, 13, 15, 0.30) 68%,
      rgba(13, 13, 15, 0.12) 100%
    ),
    url("/assets/images/hero-bg.webp") right top / cover no-repeat;
}

.site-shell::after {
  content: "";
  position: absolute;
  top: -18px;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  height: min(980px, 100vh);
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(13, 13, 15, 0.14) 0%,
      rgba(13, 13, 15, 0.02) 30%,
      rgba(13, 13, 15, 0.88) 100%
    ),
    radial-gradient(circle at 18% 45%, rgba(242, 127, 109, 0.12), transparent 28%);
}

/* Header */

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(980px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(245, 240, 236, 0.10);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    rgba(13, 13, 15, 0.76);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-centered {
  justify-self: center;
}

.brand-logo {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
}

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

.site-nav-left {
  justify-self: start;
}

.site-nav-right {
  justify-self: end;
}

.site-nav a {
  min-width: 104px;
  padding: 10px 14px;
  color: rgba(245, 240, 236, 0.82);
  text-align: center;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.menu-button {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 99px;
}

/* Shared */

.section-block {
  position: relative;
  padding: 86px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #0d0d0f;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 16px 46px rgba(242, 127, 109, 0.16);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

/* Hero */

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding-top: 135px;
  padding-bottom: 120px;
  overflow: visible;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(62px, 11vw, 142px);
  line-height: 0.82;
  letter-spacing: -0.09em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.hero-title {
  margin: 0;
  max-width: 720px;
  font-size: clamp(27px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 780;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  display: none;
}

/* Section headings */

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.company-card h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

/* Projects */

/* Projects */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 22px;
  border: 1px solid rgba(245, 240, 236, 0.10);
  border-radius: 28px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(24, 22, 25, 0.82);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  opacity: 0;
  background:
    conic-gradient(
      from 180deg,
      transparent,
      rgba(242, 127, 109, 0.72),
      rgba(255, 212, 199, 0.36),
      transparent
    );
  transition: opacity 0.28s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 27px;
  background:
    radial-gradient(circle at 18% 15%, rgba(242, 127, 109, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(18, 16, 18, 0.96);
}

.project-card:hover {
  transform: translateY(-9px);
  border-color: rgba(242, 127, 109, 0.42);
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(242, 127, 109, 0.08);
}

.project-card:hover::before {
  opacity: 1;
  animation: spin-border 4.6s linear infinite;
}

.project-card:hover .project-name {
  color: #fff8f4;
}

.project-card:hover .badge-row span {
  border-color: rgba(242, 127, 109, 0.30);
  background: rgba(242, 127, 109, 0.075);
}

.project-icon {
  display: block;
  width: 82px;
  height: 82px;
  margin-bottom: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow:
    0 18px 42px rgba(242, 127, 109, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.project-card:hover .project-icon {
  transform: scale(1.05) rotate(-2deg);
  box-shadow:
    0 24px 58px rgba(242, 127, 109, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.project-name {
  display: block;
  margin-top: 34px;
  color: var(--text);
  font-size: 25px;
  font-weight: 820;
  letter-spacing: -0.045em;
  transition: color 0.2s ease;
}

.project-category {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.badge-row,
.modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.badge-row span,
.modal-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s ease, background 0.2s ease;
}

/* Company and contact */

.company-contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 20px;
  align-items: stretch;
}

.company-contact::before {
  content: "";
  position: absolute;
  inset: -70px -40px auto;
  height: 360px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 40%, rgba(242, 127, 109, 0.12), transparent 34%),
    radial-gradient(circle at 76% 30%, rgba(255, 212, 199, 0.07), transparent 30%);
  filter: blur(2px);
}

.company-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 236, 0.10);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(22, 20, 23, 0.82);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  padding: clamp(26px, 4vw, 42px);
}

.company-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(242, 127, 109, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 38%);
}

.company-card > *,
.contact-card > * {
  position: relative;
  z-index: 1;
}

.company-card h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.company-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(245, 240, 236, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.company-list p {
  margin: 0;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(245, 240, 236, 0.08);
}

.company-list p:last-child {
  border-bottom: 0;
}

.company-list span {
  display: block;
  margin-bottom: 7px;
  color: rgba(221, 211, 206, 0.66);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-list strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.company-list a {
  color: var(--accent-light);
}

.company-list a:hover {
  color: var(--accent);
}

.contact-card p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label span {
  color: rgba(245, 240, 236, 0.82);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(245, 240, 236, 0.10);
  outline: none;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025)),
    rgba(12, 11, 13, 0.44);
  padding: 16px 17px;
  resize: vertical;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.035),
    0 12px 34px rgba(0,0,0,0.12);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-form textarea {
  min-height: 148px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(221, 211, 206, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 127, 109, 0.52);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.032)),
    rgba(12, 11, 13, 0.54);
  box-shadow:
    0 0 0 4px rgba(242, 127, 109, 0.08),
    0 18px 44px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}

.contact-form .button {
  width: fit-content;
  min-width: 170px;
  margin-top: 4px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: -2px 0 0 !important;
  color: rgba(169, 159, 154, 0.82) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

/* Footer */

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--soft);
}

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

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 8, 0.76);
  backdrop-filter: blur(14px);
}

.modal-window {
  position: relative;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background: rgba(18, 16, 18, 0.97);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.58);
  animation: modal-in 0.2s ease both;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 24px;
  line-height: 1;
}

.modal-preview {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 42px;
  background:
    radial-gradient(circle at 35% 25%, rgba(242, 127, 109, 0.20), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent);
}

.phone-frame {
  position: relative;
  width: 230px;
  height: 430px;
  padding: 22px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.phone-speaker {
  width: 58px;
  height: 6px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  height: calc(100% - 22px);
  border-radius: 24px;
  background: rgba(13, 13, 15, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 24px 60px rgba(0, 0, 0, 0.32);
}

.phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  align-self: center;
  padding: clamp(30px, 5vw, 56px);
}

.modal-content h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.modal-category {
  margin: 14px 0 0;
  color: var(--accent);
  font-weight: 780;
}

.modal-content p:not(.modal-category):not(.modal-note) {
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

.modal-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Toast */

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  min-width: min(420px, calc(100% - 36px));
  padding: 14px 18px;
  color: var(--text);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 16, 18, 0.97);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.is-error {
  border-color: rgba(229, 111, 111, 0.45);
}



/* Animation */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin-border {
  to {
    transform: rotate(1turn);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */

@media (max-width: 920px) {
  .site-shell {
    width: min(100% - 28px, var(--container));
  }

  .site-shell::before {
    height: 820px;
    background:
      linear-gradient(90deg,
        rgba(13, 13, 15, 0.99) 0%,
        rgba(13, 13, 15, 0.94) 48%,
        rgba(13, 13, 15, 0.78) 100%
      ),
      url("/assets/images/hero-bg.webp") center top / cover no-repeat;
  }
  
  .site-shell::after {
    height: 820px;
    background:
      linear-gradient(180deg,
        rgba(13, 13, 15, 0.18) 0%,
        rgba(13, 13, 15, 0.08) 35%,
        rgba(13, 13, 15, 0.92) 100%
      ),
      radial-gradient(circle at 20% 30%, rgba(242, 127, 109, 0.10), transparent 34%);
  }

  .site-header {
    top: 10px;
    grid-template-columns: 44px 1fr 44px;
  }

  .brand-centered {
    grid-column: 2;
    justify-self: center;
  }

  .site-nav-left,
  .site-nav-right {
    display: none;
  }

  .menu-button {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .site-header.menu-open .site-nav-left,
  .site-header.menu-open .site-nav-right {
    position: absolute;
    right: 0;
    display: flex;
    width: min(260px, calc(100vw - 28px));
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(13, 13, 15, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .site-nav-left {
    top: calc(100% + 10px);
    border-radius: 22px 22px 0 0;
  }

  .site-header.menu-open .site-nav-right {
    top: calc(100% + 68px);
    border-top: 0;
    border-radius: 0 0 22px 22px;
  }

  .site-header.menu-open .site-nav-left a,
  .site-header.menu-open .site-nav-right a {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 92px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .company-contact {
    grid-template-columns: 1fr;
  }

  .modal-window {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 44px);
    overflow-y: auto;
  }

  .modal-preview {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .section-block {
    padding: 62px 0;
  }

  .site-header {
    padding: 10px;
  }

  .brand-logo {
    width: 128px;
  }

  .hero-content h1 {
    font-size: clamp(58px, 21vw, 86px);
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-copy,
  .section-heading p {
    font-size: 16px;
  }

  .hero-actions,
  .policy-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 230px;
  }

  .site-footer {
    flex-direction: column;
  }

  .modal {
    padding: 12px;
  }

  .modal-window {
    max-height: calc(100vh - 24px);
    border-radius: 24px;
  }

  .modal-preview {
    min-height: 320px;
    padding: 28px;
  }

  .phone-frame {
    width: 190px;
    height: 350px;
  }

  .contact-form .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}