:root {
  color-scheme: dark;
  --ink: #070912;
  --ink-soft: #0c1020;
  --surface: #101528;
  --surface-raised: #151c32;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f8ff;
  --muted: #aab1c4;
  --cyan: #57d9ff;
  --blue: #3578ff;
  --violet: #9a67ff;
  --magenta: #dc5cff;
  --gold: #ffc34d;
  --green: #60efb0;
  --orange: #ff8a4c;
  --shell: min(1180px, calc(100vw - 40px));
  --display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--text);
  color: var(--ink);
  padding: 10px 18px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 9, 18, 0.82);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name strong {
  color: var(--cyan);
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 3px;
}

.brand-mark span:nth-child(1) { background: #ff5b4d; }
.brand-mark span:nth-child(2) { background: #4fc9ff; }
.brand-mark span:nth-child(3) { background: #ffb037; }
.brand-mark span:nth-child(4) { background: #69e49c; }

.brand-mark span {
  border-radius: 2px;
}

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

.site-nav a,
.footer-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  content: "";
  transition: transform 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}

.menu-toggle > span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 70px;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(7, 9, 18, 0.98) 12%, rgba(7, 9, 18, 0.6) 54%, rgba(7, 9, 18, 0.88));
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.35fr);
  align-items: center;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.052em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 7.1vw, 7.2rem);
  font-weight: 900;
}

h1 span {
  background: linear-gradient(90deg, #fff 0%, var(--cyan) 40%, var(--violet) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-intro {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(120deg, var(--cyan), #70a8ff 56%, var(--violet));
  box-shadow: 0 14px 40px rgba(71, 167, 255, 0.23);
  color: #060811;
}

.button-gold {
  background: linear-gradient(120deg, #ffe28a, var(--gold));
  box-shadow: 0 14px 40px rgba(255, 195, 77, 0.16);
  color: #181006;
}

.hero-art {
  position: relative;
  z-index: 1;
  margin-right: -12vw;
}

.hero-art::before {
  position: absolute;
  inset: 13% 12%;
  z-index: -1;
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(87, 217, 255, 0.25), rgba(154, 103, 255, 0.12), rgba(255, 138, 76, 0.18), rgba(96, 239, 176, 0.18), rgba(87, 217, 255, 0.25));
  filter: blur(48px);
  content: "";
}

.hero-art img {
  position: relative;
  width: min(940px, 76vw);
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.58));
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(87, 217, 255, 0.19);
  border-radius: 50%;
}

.orbit-one {
  inset: 3% 6% 7% 8%;
  transform: rotate(-9deg);
}

.orbit-two {
  inset: 14% 16% 10% 14%;
  transform: rotate(15deg);
  border-color: rgba(255, 195, 77, 0.13);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-a {
  top: 0;
  right: 5%;
  width: 420px;
  height: 420px;
  background: rgba(63, 98, 255, 0.17);
}

.hero-glow-b {
  bottom: -12%;
  left: -8%;
  width: 380px;
  height: 380px;
  background: rgba(216, 57, 122, 0.1);
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #727b94;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-index i {
  width: 28px;
  height: 1px;
  background: #363d51;
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 150px) 0;
}

.about-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 90%, rgba(154, 103, 255, 0.1), transparent 28%),
    var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 68px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2vw;
}

.section-heading h2,
.products-intro h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 880;
}

.section-heading > p:last-child {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.disciplines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.discipline {
  position: relative;
  min-height: 310px;
  padding: 42px 38px;
}

.discipline + .discipline {
  border-left: 1px solid var(--line);
}

.discipline-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #697189;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.discipline-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--cyan);
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: inset 0 0 22px rgba(87, 217, 255, 0.04);
}

.discipline:nth-child(2) .discipline-icon { color: var(--blue); }
.discipline:nth-child(3) .discipline-icon { color: var(--violet); }

.windows-icon {
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 3px;
}

.windows-icon i {
  width: 10px;
  height: 10px;
  background: currentColor;
}

.unity-icon {
  font-size: 2rem;
}

.discipline h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.discipline p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.products-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #080b15;
}

.products-intro {
  max-width: 820px;
  margin-bottom: 64px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.24);
}

.product-card + .product-card {
  margin-top: 38px;
}

.product-visual,
.product-copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 72px);
}

.product-copy {
  z-index: 2;
}

.quizidium-visual {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(86, 104, 255, 0.38), transparent 42%),
    radial-gradient(circle at 20% 80%, rgba(195, 62, 255, 0.22), transparent 35%),
    #0c0a1b;
}

.quizidium-visual::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(158, 111, 255, 0.23);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 36px rgba(158, 111, 255, 0.035), 0 0 0 72px rgba(158, 111, 255, 0.02);
}

.quizidium-visual img {
  z-index: 1;
  width: min(440px, 100%);
  margin: auto;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58));
  transition: transform 350ms ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.025);
}

.product-signal {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 9, 18, 0.55);
  padding: 7px 12px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.product-signal::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  content: "";
}

.product-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-card .product-kicker {
  color: var(--cyan);
}

.product-copy h3 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
}

.product-copy > p:not(.product-kicker) {
  max-width: 570px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.product-points {
  display: grid;
  gap: 11px;
  margin: 0 0 32px;
  padding: 0;
  color: #dce0ed;
  list-style: none;
}

.product-points li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.product-points li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 195, 77, 0.6);
  content: "";
}

.desktop-card {
  grid-template-columns: 1fr 1.15fr;
  background:
    radial-gradient(circle at 78% 42%, rgba(27, 125, 255, 0.2), transparent 32%),
    var(--surface);
}

.desktop-visual {
  min-height: 530px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31, 108, 255, 0.04), rgba(87, 217, 255, 0.08));
}

.desktop-visual::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(87, 217, 255, 0.21) 1px, transparent 1px);
  background-size: 25px 25px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black);
}

.desktop-visual img {
  z-index: 4;
  width: 115%;
  max-width: none;
  margin-left: -8%;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.72));
  transition: transform 350ms ease;
}

.desktop-window {
  position: absolute;
  border: 1px solid rgba(87, 217, 255, 0.18);
  border-radius: 18px;
  background: rgba(6, 11, 24, 0.42);
  box-shadow: 0 28px 80px rgba(0, 35, 100, 0.35), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.desktop-window::before {
  position: absolute;
  top: 17px;
  left: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 15px 0 var(--violet), 30px 0 var(--gold);
  content: "";
}

.window-back {
  top: 16%;
  right: -6%;
  width: 72%;
  height: 46%;
  transform: rotate(7deg);
}

.window-front {
  right: 12%;
  bottom: 12%;
  width: 70%;
  height: 50%;
  transform: rotate(-5deg);
}

.coming-soon {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  padding: 11px 16px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 750;
}

.coming-soon small {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.store-bag {
  position: relative;
  width: 25px;
  height: 22px;
  flex: 0 0 auto;
  border: 2px solid var(--cyan);
  border-radius: 4px;
}

.store-bag::before {
  position: absolute;
  top: -8px;
  left: 5px;
  width: 11px;
  height: 9px;
  border: 2px solid var(--cyan);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
}

.contact-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 50%, rgba(87, 217, 255, 0.1), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(255, 97, 77, 0.08), transparent 25%);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 7vw;
}

.contact-card h2 {
  max-width: 760px;
}

.contact-link {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line-strong);
  padding: 18px 0;
  color: var(--cyan);
  font-size: clamp(0.92rem, 1.35vw, 1.12rem);
  font-weight: 750;
  transition: border-color 160ms ease, color 160ms ease;
}

.contact-link span {
  overflow-wrap: anywhere;
}

.contact-link b {
  font-size: 1.5rem;
}

.contact-link:hover {
  border-color: var(--cyan);
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 54px 0;
  background: #05070e;
}

.privacy-main {
  min-height: calc(100svh - 260px);
  padding: 150px 0 100px;
  background:
    radial-gradient(circle at 85% 5%, rgba(87, 217, 255, 0.1), transparent 26%),
    radial-gradient(circle at 10% 65%, rgba(154, 103, 255, 0.08), transparent 24%);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.privacy-aside {
  position: sticky;
  top: 120px;
}

.privacy-aside h1 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.privacy-aside > p:last-child {
  color: var(--muted);
}

.privacy-content {
  display: grid;
  gap: 46px;
}

.privacy-content section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.privacy-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
  line-height: 1.8;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}

.privacy-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.privacy-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(87, 217, 255, 0.4);
  text-underline-offset: 4px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  align-items: end;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 13px;
}

.footer-inner p {
  margin-bottom: 0;
  color: #70788f;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.copyright {
  text-align: right;
}

.legal-notices {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.legal-notices p {
  margin: 0;
  color: #626b81;
  font-size: 0.72rem;
  line-height: 1.65;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .hero-art {
    margin: -5vw -18vw -3vw -12vw;
  }

  .hero-art img {
    width: 115vw;
  }

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

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

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

  .discipline {
    min-height: auto;
  }

  .discipline + .discipline {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-card,
  .desktop-card {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 480px;
  }

  .desktop-card .product-copy {
    order: 2;
  }

  .desktop-card .product-visual {
    order: 1;
  }

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

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-aside {
    position: static;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 30px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

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

  .site-nav {
    position: absolute;
    top: 69px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 18, 0.97);
    padding: 12px 20px 22px;
    backdrop-filter: blur(20px);
  }

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

  .site-nav a {
    padding: 14px 0;
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 75px;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5.6rem);
  }

  .hero-art {
    order: -1;
    margin: -24px -4vw -12px;
  }

  .hero-art img {
    width: 108vw;
  }

  .hero-index {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading,
  .products-intro {
    margin-bottom: 42px;
  }

  .discipline {
    padding: 34px 25px;
  }

  .product-card {
    min-height: auto;
    border-radius: 24px;
  }

  .product-visual,
  .product-copy {
    padding: 34px 24px;
  }

  .product-visual,
  .desktop-visual {
    min-height: 330px;
  }

  .quizidium-visual img {
    width: min(290px, 86%);
  }

  .desktop-visual img {
    width: 105%;
    margin-left: -2.5%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .copyright {
    text-align: left;
  }

  .legal-notices {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

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

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