/* PressArk - Shared Styles */
:root {
  --pressark-ink: #171c1f;
  --pressark-border: rgba(112, 131, 166, 0.18);
  --pressark-border-strong: rgba(79, 106, 153, 0.24);
  --pressark-shadow: 0 30px 80px -46px rgba(15, 39, 72, 0.42);
  --pressark-shadow-soft: 0 24px 54px -40px rgba(15, 39, 72, 0.34);
}

html {
  background: #f4f8fc;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(33, 112, 228, 0.16), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(29, 53, 87, 0.08), transparent 24%),
    linear-gradient(180deg, #fcfdff 0%, #f4f8fc 46%, #eef4fa 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 39, 76, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 39, 76, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at top center, black 12%, transparent 78%);
  opacity: 0.45;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.85), transparent 20%),
    radial-gradient(circle at 88% 4%, rgba(255, 255, 255, 0.62), transparent 16%);
  z-index: -1;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

body > nav {
  padding: 14px 18px 0;
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

body > nav > div {
  height: 68px;
  border: 1px solid rgba(124, 144, 179, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--pressark-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  position: relative;
  overflow: hidden;
}

body > nav > div::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 88, 190, 0.7), rgba(0, 88, 190, 0));
  opacity: 0;
  transition: opacity 0.2s ease;
}

body > nav.is-scrolled > div::after {
  opacity: 1;
}

body > nav a {
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body > nav button {
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body > nav a:hover {
  transform: translateY(-1px);
}

body > nav button:hover {
  transform: translateY(-1px);
}

body > nav .bg-primary\/5 {
  background: linear-gradient(180deg, rgba(33, 112, 228, 0.16), rgba(33, 112, 228, 0.08)) !important;
  border: 1px solid rgba(33, 112, 228, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid rgba(124, 144, 179, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: #41516c;
}

.mobile-nav-panel {
  display: none;
  margin: 10px 18px 0;
  padding: 14px;
  border: 1px solid rgba(124, 144, 179, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--pressark-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
}

.mobile-nav-panel:not(.hidden) {
  display: block;
}

.mobile-nav-links,
.mobile-nav-actions {
  display: grid;
  gap: 8px;
}

.mobile-nav-actions {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(120, 142, 175, 0.16);
}

.mobile-nav-link,
.mobile-nav-action {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-nav-link {
  justify-content: flex-start;
  color: #424754;
}

.mobile-nav-link:hover {
  background: rgba(241, 246, 251, 0.92);
  color: var(--pressark-ink);
}

.mobile-nav-link.is-active {
  background: linear-gradient(180deg, rgba(33, 112, 228, 0.16), rgba(33, 112, 228, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #0058be;
}

.mobile-nav-action {
  gap: 8px;
  background: rgba(241, 246, 251, 0.92);
  color: #41516c;
}

.mobile-nav-action:hover {
  background: rgba(231, 239, 248, 0.96);
  color: var(--pressark-ink);
}

.mobile-nav-action--primary {
  background: linear-gradient(180deg, #0058be, #004da6);
  box-shadow: 0 18px 40px -24px rgba(0, 88, 190, 0.56);
  color: #ffffff;
}

.mobile-nav-action--primary:hover {
  color: #ffffff;
}

main {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: pageFadeIn 0.3s ease-out forwards;
}

main > section:first-child,
main > header:first-child {
  position: relative;
  overflow: hidden;
  padding-top: 44px !important;
  padding-bottom: 44px !important;
  border: 1px solid var(--pressark-border);
  border-radius: 34px;
  background:
    radial-gradient(52% 86% at 76% 36%, rgba(33, 112, 228, 0.16) 0%, rgba(33, 112, 228, 0.09) 28%, rgba(33, 112, 228, 0.04) 42%, transparent 64%),
    radial-gradient(28% 48% at 70% 58%, rgba(255, 255, 255, 0.58) 0%, transparent 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 252, 0.9));
  box-shadow: var(--pressark-shadow);
}

main > section:first-child::before,
main > header:first-child::before {
  content: none;
}

main > section:first-child > *,
main > header:first-child > * {
  position: relative;
  z-index: 1;
}

main > section:first-child > p,
main > header:first-child > p {
  max-width: 42rem;
}

main .bg-surface-container-lowest {
  background: rgba(255, 255, 255, 0.86) !important;
  border-color: rgba(123, 143, 177, 0.18) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 52px -42px rgba(15, 39, 72, 0.36);
}

main .bg-surface-container-low {
  background: rgba(241, 246, 251, 0.84) !important;
}

main .editorial-shadow {
  box-shadow: var(--pressark-shadow);
}

body > footer {
  position: relative;
  margin: 56px 18px 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(10, 21, 38, 0.98), rgba(17, 30, 55, 0.97)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 36px 90px -52px rgba(10, 18, 35, 0.78);
  overflow: hidden;
}

body > footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(33, 112, 228, 0.26), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 24%);
}

body > footer > * {
  position: relative;
  z-index: 1;
}

body > footer .text-on-surface {
  color: #f8fbff !important;
}

body > footer .text-on-surface-variant {
  color: rgba(230, 238, 248, 0.72) !important;
}

body > footer .text-outline {
  color: rgba(230, 238, 248, 0.52) !important;
}

body > footer .border-outline-variant\/10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body > footer a:hover {
  color: #ffffff !important;
}

.case-panel {
  border: 1px solid rgba(120, 142, 175, 0.16);
  border-radius: 24px;
  box-shadow: 0 26px 58px -44px rgba(15, 39, 72, 0.38);
  overflow: hidden;
}

.case-panel-soft {
  background: rgba(245, 249, 253, 0.82) !important;
  backdrop-filter: blur(10px);
}

.case-panel-dark {
  box-shadow: 0 34px 70px -52px rgba(5, 12, 24, 0.82);
}

.docs-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(120, 142, 175, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 243, 252, 0.9));
  box-shadow: 0 28px 64px -46px rgba(15, 39, 72, 0.36);
}

.docs-cta::before {
  content: '';
  position: absolute;
  top: -48px;
  right: -44px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(33, 112, 228, 0.18), transparent 70%);
  pointer-events: none;
}

.docs-cta > * {
  position: relative;
  z-index: 1;
}

.faq-group {
  padding: 26px;
  border: 1px solid rgba(120, 142, 175, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 50px -44px rgba(15, 39, 72, 0.34);
}

.faq-support-card {
  border: 1px solid rgba(120, 142, 175, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 245, 252, 0.94));
  box-shadow: 0 26px 58px -44px rgba(15, 39, 72, 0.34);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 2px 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.faq-toggle:hover h3,
.faq-toggle:hover h4 {
  color: var(--pressark-ink);
}

.faq-toggle .faq-icon {
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-toggle[aria-expanded='true'] .faq-icon {
  transform: rotate(180deg);
  color: #0058be;
}

.changelog-entry {
  padding: 28px 28px 26px 32px;
  border-radius: 24px;
  border-top: 1px solid rgba(120, 142, 175, 0.16);
  border-right: 1px solid rgba(120, 142, 175, 0.16);
  border-bottom: 1px solid rgba(120, 142, 175, 0.16);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 54px -44px rgba(15, 39, 72, 0.34);
}

.contact-card {
  border: 1px solid rgba(120, 142, 175, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 24px 54px -44px rgba(15, 39, 72, 0.34);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(33, 112, 228, 0.26);
  box-shadow: 0 28px 62px -42px rgba(15, 39, 72, 0.42);
}

.contact-form-shell {
  border: 1px solid rgba(120, 142, 175, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84) !important;
  box-shadow: 0 28px 64px -46px rgba(15, 39, 72, 0.36);
}

a:focus-visible,
button:focus-visible,
[role='button']:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.88), 0 0 0 6px rgba(33, 112, 228, 0.24);
}

.site-hero {
  position: relative;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-backdrop::before {
  content: '';
  position: absolute;
  inset: 10% 0 auto;
  height: 420px;
  background-image:
    linear-gradient(rgba(17, 51, 102, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 51, 102, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 76%);
  opacity: 0.6;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(76px);
}

.hero-orb--left {
  top: 52px;
  left: -64px;
  width: 240px;
  height: 240px;
  background: rgba(33, 112, 228, 0.22);
}

.hero-orb--right {
  top: 18px;
  right: -72px;
  width: 320px;
  height: 320px;
  background: rgba(29, 53, 87, 0.12);
}

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

.hero-grid {
  align-items: center;
  border: 1px solid var(--pressark-border-strong);
  border-radius: 38px;
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 250, 254, 0.62));
  box-shadow: var(--pressark-shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  position: relative;
}

.hero-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.4s ease-out forwards;
}

.hero-fade-up--delay {
  animation-delay: 0.08s;
}

.hero-kicker span {
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(33, 112, 228, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-copy .bg-surface-container-highest\/60 {
  background: rgba(255, 255, 255, 0.66) !important;
  border: 1px solid rgba(113, 134, 168, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-proof {
  gap: 10px 18px !important;
  padding: 16px 18px;
  max-width: 540px;
  border: 1px solid rgba(120, 142, 175, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-proof .w-px {
  display: none;
}

.hero-proof > span {
  position: relative;
}

.hero-proof > span:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  width: 1px;
  height: 12px;
  transform: translateY(-50%);
  background: rgba(122, 142, 175, 0.34);
}

.hero-preview {
  position: relative;
}

.hero-preview::before {
  content: 'Native wp-admin workspace';
  position: absolute;
  top: -16px;
  left: 22px;
  z-index: 2;
  padding: 7px 12px;
  border: 1px solid rgba(111, 135, 173, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px -34px rgba(15, 39, 72, 0.42);
  color: #41516c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-mockup {
  border-radius: 28px !important;
  border-color: rgba(111, 136, 172, 0.18) !important;
  box-shadow: 0 42px 100px -58px rgba(11, 29, 56, 0.62) !important;
}

.hover-pulse-card {
  transition: box-shadow 0.3s ease;
}

.hover-pulse-card:hover {
  box-shadow: 0 40px 95px -56px rgba(0, 88, 190, 0.45) !important;
}

.feature-card-hover {
  position: relative;
  transition: box-shadow 0.25s ease;
}

.feature-card-hover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 88, 190, 0.85), rgba(0, 88, 190, 0.2));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card-hover:hover::before {
  opacity: 1;
}

.pricing-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: scale(1.02);
}

.popular-badge {
  box-shadow: 0 0 20px rgba(0, 88, 190, 0.15);
}

.timeline-list {
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(194, 198, 214, 0.7);
}

.animate-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.faq-item {
  transition: background-color 0.2s ease;
}

.faq-item.is-open {
  background: rgba(234, 238, 242, 0.85) !important;
}

.docs-layout {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 2rem;
}

.docs-toc {
  position: sticky;
  top: 96px;
  align-self: start;
}

.doc-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  border: 1px solid rgba(194, 198, 214, 0.8);
  background: rgba(234, 238, 242, 0.75);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-aura {
  opacity: 0.9;
}

/* WP Admin Mockup */
.wp-sidebar {
  background: #1d2327;
  color: #c3c4c7;
  font-size: 13px;
}

.wp-sidebar-item {
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}

.wp-sidebar-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.wp-sidebar-item.active {
  background: #2271b1;
  color: #fff;
}

.wp-topbar {
  background: #1d2327;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  color: #c3c4c7;
}

/* PressArk Chat Panel */
.pressark-panel {
  background: #fff;
  border-left: 1px solid #e2e4e7;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pressark-header {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e4e7;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
}

.pressark-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f9fafb;
}

.msg-user {
  align-self: flex-end;
  background: #0058be;
  color: #fff;
  padding: 8px 14px;
  border-radius: 12px 12px 2px 12px;
  max-width: 85%;
  font-size: 13px;
  line-height: 1.45;
}

.msg-assistant {
  align-self: flex-start;
  display: flex;
  gap: 8px;
  max-width: 92%;
}

.msg-assistant-body {
  background: #fff;
  border: 1px solid #e2e4e7;
  border-radius: 2px 12px 12px 12px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #1e1e1e;
  flex: 1;
}

.tool-execution {
  background: #f0f6ff;
  border: 1px solid #d0e2ff;
  border-radius: 8px;
  padding: 8px 12px;
  margin: 6px 0;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0058be;
}

.tool-execution .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings: 'FILL' 1, 'wght' 500;
}

.approval-bar {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.approval-bar button {
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-approve {
  background: #0058be;
  color: #fff;
}

.btn-reject {
  background: #f0f0f1;
  color: #50575e;
  border: 1px solid #dcdcde;
}

.pressark-input {
  padding: 12px 16px;
  border-top: 1px solid #e2e4e7;
  display: flex;
  gap: 8px;
  background: #fff;
}

.pressark-input input {
  flex: 1;
  border: 1px solid #dcdcde;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
  color: #1e1e1e;
}

.pressark-input button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #0058be;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-grid {
    border-radius: 30px;
  }

  .hero-preview::before {
    left: 18px;
  }
}

@media (max-width: 768px) {
  body > nav {
    padding: 10px 12px 0;
  }

  body > nav > div {
    height: 64px;
    border-radius: 20px;
    gap: 10px;
  }

  body > nav > div > div:first-child {
    min-width: 0;
    gap: 12px;
  }

  body > nav > div > div:last-child {
    gap: 8px;
  }

  body > nav > div > div:last-child > a:last-of-type {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .mobile-nav-panel {
    margin: 10px 12px 0;
    padding: 12px;
    border-radius: 20px;
  }

  main > section:first-child,
  main > header:first-child {
    border-radius: 26px;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    background:
      radial-gradient(62% 92% at 76% 34%, rgba(33, 112, 228, 0.14) 0%, rgba(33, 112, 228, 0.08) 30%, rgba(33, 112, 228, 0.035) 44%, transparent 66%),
      radial-gradient(30% 48% at 68% 60%, rgba(255, 255, 255, 0.52) 0%, transparent 100%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 252, 0.9));
  }

  .hero-grid {
    padding: 20px;
    border-radius: 28px;
  }

  .hero-proof {
    padding: 14px;
  }

  .hero-proof > span {
    padding-right: 0;
  }

  .hero-proof > span::after {
    display: none;
  }

  .hero-preview::before {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }

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

  .docs-toc {
    display: none;
  }

  body > footer {
    margin: 40px 12px 12px;
    border-radius: 24px;
  }

  .faq-group,
  .changelog-entry,
  .contact-form-shell,
  .docs-cta,
  .case-panel {
    border-radius: 22px;
  }
}

@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;
  }

  body > nav a:hover,
  body > nav button:hover,
  .contact-card:hover,
  .mobile-nav-action:hover,
  .mobile-nav-link:hover,
  .pricing-card:hover {
    transform: none;
  }

  .animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
