:root {
  --navy: #082b5d;
  --navy-soft: #294768;
  --blue: #287cf3;
  --blue-deep: #1767db;
  --blue-pale: #e8f4ff;
  --blue-field: #d8ecff;
  --pink: #f35e91;
  --pink-pale: #fff0f5;
  --pink-field: #ffe2ec;
  --sage: #2d7f68;
  --white: #ffffff;
  --surface: #f8fbff;
  --line: #d9e5f1;
  --muted: #5c6e84;
  --shadow: 0 28px 70px rgba(20, 62, 110, 0.16);
  --small-shadow: 0 12px 30px rgba(20, 62, 110, 0.1);
  --radius: 28px;
  --radius-small: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--blue-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(40, 124, 243, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 229, 241, 0.75);
  backdrop-filter: blur(18px);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.nav-wrap {
  width: min(calc(100% - 40px), var(--max));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(40, 124, 243, 0.14);
}

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

.site-nav a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-deep);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--navy);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 34%, rgba(216, 236, 255, 0.98) 0 18%, transparent 46%),
    radial-gradient(circle at 19% 110%, rgba(255, 226, 236, 0.92) 0 27%, transparent 56%),
    var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 260px;
  right: -120px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(208, 232, 255, 0.74);
  transform: rotate(-7deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 74px 0 104px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: 50px;
}

.hero-copy {
  max-width: 650px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  font-size: clamp(52px, 5.35vw, 76px);
  font-weight: 780;
}

h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 760;
}

h3 {
  font-size: 24px;
  font-weight: 740;
  letter-spacing: -0.025em;
}

.hero-copy > p {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--navy-soft);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.48;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.button {
  min-height: 56px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(40, 124, 243, 0.22);
  color: white;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
  box-shadow: 0 16px 32px rgba(40, 124, 243, 0.26);
  color: white;
}

.button.secondary {
  color: var(--blue-deep);
  background: transparent;
  box-shadow: none;
  padding-inline: 4px;
}

.button.secondary:hover {
  color: var(--navy);
  transform: none;
}

.availability {
  margin-top: 33px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 620;
}

.availability::before {
  content: "";
  width: 11px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(179, 217, 255, 0.78), rgba(255, 209, 226, 0.68));
  filter: blur(2px);
}

.phone {
  position: relative;
  width: 328px;
  min-height: 642px;
  padding: 13px;
  border: 3px solid #171b22;
  border-radius: 52px;
  background: #090c11;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.phone-screen {
  min-height: 612px;
  overflow: hidden;
  border-radius: 39px;
  background: linear-gradient(155deg, #eef7ff, #ffffff 45%, #fff4f8);
}

.island {
  width: 105px;
  height: 27px;
  margin: 10px auto 6px;
  border-radius: 20px;
  background: #030507;
}

.phone-content {
  padding: 10px 17px 22px;
}

.baby-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.baby-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink-field);
  display: grid;
  place-items: center;
  font-size: 25px;
}

.baby-header strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.baby-header span {
  color: var(--muted);
  font-size: 12px;
}

.status-list {
  display: grid;
  gap: 10px;
}

.status-row {
  min-height: 96px;
  padding: 14px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(217, 229, 241, 0.72);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 13px rgba(20, 62, 110, 0.07);
}

.round-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 23px;
  font-weight: 720;
}

.status-row.sleep .round-icon {
  background: #eee9ff;
  color: #6a4bd6;
}

.status-row.diaper .round-icon {
  background: #e5f6f0;
  color: var(--sage);
}

.status-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 670;
}

.status-value {
  font-size: 18px;
  font-weight: 760;
  line-height: 1.2;
}

.status-detail {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.status-arrow {
  color: #8ba0b8;
  font-size: 25px;
}

.quick-label {
  margin: 18px 0 9px;
  font-size: 13px;
  font-weight: 760;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.quick-action {
  min-height: 76px;
  padding: 9px 3px;
  display: grid;
  place-items: center;
  gap: 2px;
  border: 0;
  border-radius: 14px;
  background: white;
  color: var(--navy);
  font-size: 9px;
  font-weight: 710;
  box-shadow: 0 5px 12px rgba(20, 62, 110, 0.07);
}

.quick-action b {
  color: var(--blue);
  font-size: 23px;
  line-height: 1;
}

.section {
  padding: 112px 0;
}

.section-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 65px;
  text-align: center;
}

.section-heading p {
  max-width: 710px;
  margin: 20px auto 0;
  color: var(--navy-soft);
  font-size: 21px;
}

.modes {
  background:
    radial-gradient(circle at 50% 46%, rgba(255,255,255,0.9) 0 14%, transparent 34%),
    var(--pink-pale);
}

.mode-showcase {
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  align-items: center;
  gap: 24px;
}

.mode-panel {
  min-height: 490px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--small-shadow);
}

.mode-panel.power {
  border-top: 5px solid var(--blue);
}

.mode-panel.simple {
  border-top: 5px solid var(--pink);
}

.mode-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.mode-title strong {
  font-size: 22px;
  letter-spacing: -0.025em;
}

.mode-title span {
  color: var(--muted);
  font-size: 13px;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.summary-cell {
  padding: 17px 8px;
  text-align: center;
  border-radius: 16px;
  background: var(--surface);
}

.summary-cell b {
  display: block;
  font-size: 22px;
}

.summary-cell span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 670;
}

.timeline {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 2px solid var(--blue-field);
  display: grid;
  gap: 15px;
}

.timeline-row {
  position: relative;
  padding: 15px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.timeline-row::before {
  content: "";
  position: absolute;
  left: -24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--pink-pale);
}

.timeline-row time {
  color: var(--muted);
  font-size: 12px;
}

.timeline-row strong {
  font-size: 14px;
}

.timeline-row span {
  color: var(--muted);
  font-size: 12px;
}

.brand-bridge {
  width: 160px;
  margin: 0 auto;
  text-align: center;
}

.brand-bridge img {
  width: 150px;
  height: 150px;
  border-radius: 36px;
  object-fit: cover;
  box-shadow: var(--small-shadow);
}

.brand-bridge span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.simple-action {
  min-height: 155px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 0;
  border-radius: 22px;
  background: var(--blue-pale);
  color: var(--navy);
  font-size: 18px;
  font-weight: 760;
}

.simple-action:nth-child(even) {
  background: var(--pink-pale);
}

.simple-action .icon {
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.simple-action:nth-child(even) .icon {
  color: var(--pink);
}

.privacy-band {
  background: linear-gradient(120deg, #e8f5ff, #d8edff 58%, #edf7ff);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.privacy-copy p {
  max-width: 480px;
  margin: 24px 0 26px;
  color: var(--navy-soft);
  font-size: 19px;
}

.principles {
  margin: 0;
  padding: 0;
  list-style: none;
}

.principle {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(92, 110, 132, 0.22);
}

.principle:last-child {
  border-bottom: 0;
}

.principle-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.62);
  color: var(--navy);
  font-size: 25px;
}

.principle strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.principle p {
  margin: 0;
  color: var(--navy-soft);
}

.support-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.support-link {
  min-height: 210px;
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
}

.support-link:last-child {
  border-right: 0;
}

.support-link:hover {
  color: var(--blue-deep);
}

.support-link .support-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-pale);
  font-size: 28px;
}

.support-link:nth-child(2) .support-icon {
  background: var(--pink-pale);
  color: var(--pink);
}

.support-link strong {
  font-size: 19px;
}

.support-link span {
  max-width: 260px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
}

.footer-brand {
  font-size: 20px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a {
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.copyright {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

/* Content pages */
.page-hero {
  padding: 92px 0 72px;
  background: linear-gradient(135deg, var(--blue-pale), #f5faff 50%, var(--pink-pale));
}

.page-hero .section-inner {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 830px;
  font-size: clamp(46px, 6vw, 68px);
}

.page-hero p {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--navy-soft);
  font-size: 20px;
}

.preview-notice {
  margin-top: 30px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #f0c976;
  border-radius: 15px;
  background: #fff9e8;
  color: #5e481a;
  font-size: 14px;
}

.content-layout {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 72px 0 110px;
  display: grid;
  grid-template-columns: 255px minmax(0, 760px);
  gap: 80px;
  align-items: start;
}

.page-nav {
  position: sticky;
  top: 112px;
  padding: 20px;
  border-radius: var(--radius-small);
  background: var(--surface);
}

.page-nav strong {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-nav a {
  padding: 8px 0;
  display: block;
  color: var(--navy-soft);
  font-size: 14px;
  text-decoration: none;
}

.page-nav a:hover {
  color: var(--blue-deep);
}

.prose section {
  padding-top: 22px;
  margin-bottom: 58px;
  scroll-margin-top: 98px;
}

.prose h2 {
  margin-bottom: 21px;
  font-size: 34px;
}

.prose h3 {
  margin: 30px 0 11px;
  font-size: 21px;
}

.prose p,
.prose li {
  color: #344d6b;
}

.prose ul,
.prose ol {
  padding-left: 24px;
}

.prose li + li {
  margin-top: 9px;
}

.prose .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.data-table th {
  color: var(--navy);
  background: var(--surface);
}

.info-panel {
  margin: 25px 0;
  padding: 22px;
  border-radius: var(--radius-small);
  background: var(--blue-pale);
}

.info-panel.pink {
  background: var(--pink-pale);
}

.info-panel strong {
  display: block;
  margin-bottom: 5px;
}

.info-panel p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: white;
}

summary {
  min-height: 62px;
  padding: 17px 54px 17px 20px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 21px;
  font-size: 25px;
  font-weight: 500;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 35px 0 60px;
}

.support-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: white;
  box-shadow: 0 8px 22px rgba(20, 62, 110, 0.06);
}

.support-card h3 {
  margin: 0 0 10px;
}

.support-card p {
  margin: 0 0 18px;
  color: var(--navy-soft);
  font-size: 15px;
}

.text-link {
  font-weight: 720;
  text-decoration: none;
}

.request-form {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #bed0e1;
  border-radius: 13px;
  background: white;
  color: var(--navy);
}

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

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

.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  margin-bottom: 24px;
  color: var(--navy-soft);
  font-size: 14px;
}

.checkbox input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
}

.form-result {
  display: none;
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius-small);
  background: #e7f7ef;
  color: #164d3e;
}

.form-result.visible {
  display: block;
}

.back-home {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 720;
  text-decoration: none;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 58px;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .availability {
    justify-content: center;
  }

  .phone {
    width: 310px;
    transform: none;
  }

  .mode-showcase {
    grid-template-columns: 1fr 100px 1fr;
  }

  .brand-bridge img {
    width: 96px;
    height: 96px;
    border-radius: 26px;
  }

  .privacy-layout {
    gap: 50px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 47px;
    height: 47px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    padding: 18px 24px 30px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--small-shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 4px;
    font-size: 17px;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    padding: 58px 0 84px;
  }

  h1 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .hero-copy > p {
    font-size: 19px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button.secondary {
    width: auto;
  }

  .phone-stage::before {
    width: 330px;
    height: 330px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .section-heading p {
    font-size: 18px;
  }

  .mode-showcase {
    grid-template-columns: 1fr;
  }

  .brand-bridge {
    order: -1;
  }

  .brand-bridge span {
    display: none;
  }

  .mode-panel {
    min-height: 0;
  }

  .privacy-layout,
  .content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-nav {
    position: static;
  }

  .support-links,
  .support-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .support-link {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .support-link:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 25px;
  }

  .footer-nav {
    gap: 16px 22px;
  }

  .copyright {
    grid-column: auto;
  }

  .page-hero {
    padding: 70px 0 56px;
  }

  .content-layout {
    padding-top: 48px;
  }

  .prose .data-table {
    display: block;
    overflow-x: auto;
  }

  .request-form {
    padding: 23px;
  }
}

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

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