/* ============================================
   RetailAI — Shared marketing styles
   ============================================ */

:root {
  --bg: #f3f6fb;
  --bg-alt: #e8eef8;
  --surface: #ffffff;
  --surface-alt: #f8fbff;
  --surface-dark: #0f172a;
  --surface-dark-alt: #162033;
  --text: #0f172a;
  --text-muted: #5f6b7a;
  --text-soft: #8b97a7;
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --accent-soft: #eaf2ff;
  --success: #0f9f6e;
  --border: #d7deea;
  --border-dark: #a1aec2;
  --white: #ffffff;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 36px 90px rgba(15, 23, 42, 0.16);
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font: var(--font-body);
}

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

html {
  scroll-behavior: smooth;
}

body.yc-theme {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(180deg, #f7f9fd 0%, #eef3fa 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface-dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
}

a.btn,
.btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(247, 249, 253, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(160, 174, 194, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  min-height: 5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  width: auto;
  height: 1.9rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--text);
}

@media (max-width: 780px) {
  .header-nav {
    display: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-header-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(160, 174, 194, 0.45);
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-header-quiet:hover {
  color: var(--text);
  border-color: var(--border-dark);
  background: var(--surface);
  transform: translateY(-1px);
}

.btn-header-primary {
  min-height: 2.75rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn-header-primary .btn-label-short {
  display: none;
}

@media (max-width: 520px) {
  .header-actions {
    gap: 0.35rem;
  }

  .btn-header-quiet {
    padding: 0.45rem 0.75rem;
    font-size: 0.8125rem;
  }

  .btn-header-primary .btn-label-long {
    display: none;
  }

  .btn-header-primary .btn-label-short {
    display: inline;
  }

  .btn-header-primary {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

body.lead-modal-open {
  overflow: hidden;
}

.lead-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.lead-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.lead-modal-panel {
  position: relative;
  width: 100%;
  max-width: 26rem;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.lead-modal-backdrop.is-open .lead-modal-panel {
  transform: translateY(0) scale(1);
}

.lead-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lead-modal-close:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.lead-modal-title {
  margin: 0 2rem 0.35rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.lead-modal-intro {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.lead-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
}

.lead-field .optional {
  font-weight: 500;
  color: var(--text-soft);
}

.lead-field-hint {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
}

.lead-field input,
.lead-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface-alt);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lead-field input:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.lead-field textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.lead-modal-error {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.lead-modal-success {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.lead-modal-submit {
  margin-top: 0.25rem;
  width: 100%;
  min-height: 3rem;
  border: none;
  cursor: pointer;
}

.lead-modal-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-primary-yt,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary-yt:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn-primary-yt {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.26);
}

.btn-primary-yt:hover {
  color: var(--white);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.32);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(160, 174, 194, 0.55);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-dark);
  background: var(--surface);
}

.btn-lg {
  min-height: 3.5rem;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.btn-on-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.btn-on-dark:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.section-yc {
  padding: 6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(248, 251, 255, 0.96) 100%);
}

.section-top {
  margin-bottom: 2.75rem;
}

.section-top-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: end;
}

.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--text);
  text-wrap: balance;
}

.section-sub {
  margin: 1rem 0 0;
  max-width: 44rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-sub-right {
  justify-self: end;
}

@media (max-width: 900px) {
  .section-top-split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-sub-right {
    justify-self: start;
  }
}

.hero-yc {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2.5rem;
}

.hero-yc::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 22%, rgba(37, 99, 235, 0.16), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(15, 159, 110, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-copy {
  max-width: 40rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(160, 174, 194, 0.35);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.9vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
  color: var(--text);
  text-wrap: balance;
  max-width: 13ch;
}

.hero-sub {
  margin: 1.4rem 0 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
}

.hero-dashboard {
  position: relative;
  padding: 0.9rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 27, 45, 0.95) 0%, rgba(12, 20, 34, 1) 100%);
  border: 1px solid rgba(106, 126, 159, 0.3);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  overflow: hidden;
}

.hero-dashboard::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.28), transparent 24%),
    radial-gradient(circle at bottom left, rgba(15, 159, 110, 0.18), transparent 26%);
  pointer-events: none;
}

.dashboard-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-brand {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.dashboard-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 159, 110, 0.18);
  color: #8cf4cb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-status::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
}

.dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 0.8rem;
}

.signal-card {
  position: relative;
  overflow: hidden;
  padding: 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.signal-pill,
.signal-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signal-pill {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
}

.signal-label {
  background: rgba(37, 99, 235, 0.18);
  color: #aecdff;
}

.signal-title {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  line-height: 1.5;
}

.thread {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.thread-row {
  max-width: 88%;
  padding: 0.65rem 0.8rem;
  border-radius: 16px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.thread-row.customer {
  align-self: flex-end;
  background: rgba(37, 99, 235, 0.9);
  color: var(--white);
  border-bottom-right-radius: 6px;
}

.thread-row.ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  border-bottom-left-radius: 6px;
}

.signal-list,
.activity-list,
.signal-notes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.signal-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.signal-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.signal-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.signal-list strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.signal-compact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signal-mini-title {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.signal-notes {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.signal-notes li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 1.45;
}

.signal-notes li::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #60a5fa 0%, #22c55e 100%);
}

.activity-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.activity-dot {
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #60a5fa 0%, #22c55e 100%);
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.1);
}

.activity-list strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.4;
}

.activity-list span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 1060px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hero-yc {
    padding-top: 3.5rem;
  }

  .hero-headline {
    max-width: none;
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

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

.social-proof-strip {
  padding: 2rem 0 1rem;
}

.proof-label {
  margin: 0 0 1.25rem;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.logo-cloud img {
  width: 100%;
  height: 4.5rem;
  object-fit: contain;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(160, 174, 194, 0.28);
  box-shadow: var(--shadow-sm);
  filter: grayscale(100%);
  opacity: 0.74;
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.logo-cloud img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .logo-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.stats-strip {
  padding: 1rem 0 0;
}

.outcome-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  padding: 1.3rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(22, 32, 51, 0.98) 100%);
  box-shadow: var(--shadow-lg);
}

.outcome-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.outcome-band .section-kicker {
  color: #93c5fd;
}

.outcome-band .section-head {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  padding: 0.95rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.stat strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.stat-divider {
  display: none;
}

@media (max-width: 900px) {
  .outcome-band {
    grid-template-columns: 1fr;
  }

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

.product-bento,
.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.35rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.6rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(160, 174, 194, 0.3);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -32% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: var(--shadow-md);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.pc-label,
.pc-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pc-label {
  color: var(--accent);
  background: var(--accent-soft);
}

.pc-chip {
  color: var(--text-muted);
  background: rgba(232, 238, 248, 0.9);
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--text);
}

.feature-spotlight {
  min-height: 100%;
  padding: 0;
  overflow: visible;
}

.feature-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 320px);
  gap: 1.5rem;
  align-items: center;
  min-height: 100%;
  padding: 1.9rem;
}

.feature-spotlight-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.feature-spotlight-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.feature-illustration {
  width: 100%;
  max-width: 280px;
  height: auto;
  opacity: 0.92;
}

@media (max-width: 900px) {
  .feature-spotlight-inner {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .feature-spotlight-figure {
    order: -1;
    padding: 0.5rem 0 0;
    max-height: 180px;
  }

  .feature-illustration {
    max-width: 220px;
    max-height: 165px;
  }
}

.feature-lead {
  margin: -0.15rem 0 0.15rem;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.feature-grid-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.product-card-compact {
  min-height: 0;
}

.product-card-compact .product-card-top {
  margin-bottom: 0.1rem;
}

.product-card-compact h3 {
  font-size: 1.08rem;
  line-height: 1.28;
}

.product-card-compact .pc-caps {
  gap: 0.6rem;
}

.product-card-compact .pc-caps li {
  font-size: 0.88rem;
  line-height: 1.55;
}

.pc-caps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pc-caps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.pc-caps li::before {
  content: '';
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent) 0%, #38bdf8 100%);
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.08);
}

.pc-foot {
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(160, 174, 194, 0.22);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 700;
}

@media (max-width: 920px) {
  .product-bento,
  .features-layout {
    grid-template-columns: 1fr;
  }
}

.channels-section {
  position: relative;
}

.channels-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.4rem;
  align-items: start;
}

.channel-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.channel-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(160, 174, 194, 0.3);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.channel-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.25);
}

.channel-tab.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(234, 242, 255, 0.92) 100%);
  border-color: rgba(37, 99, 235, 0.32);
}

.ch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: rgba(232, 238, 248, 0.92);
  border: 1px solid rgba(160, 174, 194, 0.25);
}

.ch-icon img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.channel-tab strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.channel-tab small {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.channels-preview {
  position: sticky;
  top: 6.25rem;
}

.channel-preview {
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #0f172a 0%, #162033 100%);
  border: 1px solid rgba(106, 126, 159, 0.28);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.channel-preview:not(.active) {
  display: none;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.2rem 0.15rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.preview-dot {
  width: 0.55rem;
  height: 0.55rem;
  margin-left: auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.preview-dot.online {
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
}

.preview-chat {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.pc {
  max-width: 82%;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.pc.customer {
  align-self: flex-end;
  background: rgba(37, 99, 235, 0.88);
  color: var(--white);
  border-bottom-right-radius: 6px;
}

.pc.ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  border-bottom-left-radius: 6px;
}

.email-style {
  gap: 1rem;
}

.email-row {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.email-label {
  color: var(--white);
  font-weight: 800;
}

.email-reply {
  max-width: 100%;
}

.email-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: rgba(15, 159, 110, 0.18);
  color: #8cf4cb;
  font-size: 0.75rem;
  font-weight: 800;
}

@media (max-width: 920px) {
  .channels-shell {
    grid-template-columns: 1fr;
  }

  .channels-preview {
    position: static;
  }
}

.replace-stack {
  position: relative;
}

.stack-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: center;
}

.stack-points {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.stack-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.stack-points li::before {
  content: '';
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent) 0%, #22c55e 100%);
}

.stack-converge {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.1rem;
  align-items: stretch;
  padding: 1.2rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 50%, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 252, 0.92));
  border: 1px solid rgba(160, 174, 194, 0.3);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.stack-converge::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(45% - 1rem);
  width: 5.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.18), rgba(37, 99, 235, 0.55));
  transform: translateY(-50%);
  pointer-events: none;
}

.stack-scatter,
.stack-destination {
  position: relative;
  border-radius: 28px;
  min-width: 0;
}

.stack-scatter {
  padding: 1rem;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(160, 174, 194, 0.22);
}

.stack-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.stack-panel-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.2rem 0.72rem;
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(226, 232, 240, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stack-panel-head p {
  margin: 0;
  max-width: 16rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.stack-tools {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

.stack-tool {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 5.75rem;
  padding: 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(160, 174, 194, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stack-tool:nth-child(1) {
  transform: translateY(0.2rem);
}

.stack-tool:nth-child(2) {
  transform: translateY(-0.15rem);
}

.stack-tool:nth-child(3) {
  transform: translateX(0.3rem);
}

.stack-tool:nth-child(4) {
  transform: translateX(-0.25rem);
}

.stack-tool:nth-child(5) {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  min-height: 0;
  padding: 0.85rem 0.95rem;
}

.stack-tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 18px;
  color: var(--accent);
  background: var(--accent-soft);
}

.stack-tool-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.stack-tool-label {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.stack-destination {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.35), transparent 34%),
    linear-gradient(180deg, #dbeafe 0%, #eef5ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.stack-destination-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.stack-destination img {
  width: auto;
  height: 1.95rem;
}

.stack-destination-label {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stack-destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.stack-destination-module {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.85rem 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.stack-destination-module strong {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.stack-destination-module span {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.stack-destination-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.05);
}

.stack-destination-note p {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.5;
}

.stack-destination-pulse {
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.28rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent) 0%, #22c55e 100%);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}

@media (max-width: 1120px) {
  .stack-layout {
    grid-template-columns: 1fr;
  }

  .stack-converge {
    grid-template-columns: 1fr;
  }

  .stack-converge::after {
    top: auto;
    bottom: calc(50% - 0.3rem);
    left: 50%;
    width: 1px;
    height: 3rem;
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.18), rgba(37, 99, 235, 0.55));
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .stack-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stack-panel-head,
  .stack-destination-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .stack-panel-head p {
    max-width: none;
  }

  .stack-destination-grid {
    grid-template-columns: 1fr;
  }
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.35rem;
}

.case-study-card,
.testimonial-card {
  padding: 1.6rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(160, 174, 194, 0.3);
  box-shadow: var(--shadow-sm);
}

.cs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.cs-logo {
  width: auto;
  height: 2.1rem;
  object-fit: contain;
}

.cs-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cs-summary {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.cs-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.cs-stat {
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(232, 238, 248, 0.78) 0%, rgba(255, 255, 255, 0.92) 100%);
  border: 1px solid rgba(160, 174, 194, 0.24);
}

.cs-stat strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.cs-stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.testimonial-featured {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(22, 32, 51, 1) 100%);
  border-color: rgba(106, 126, 159, 0.28);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: #facc15;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
}

.testimonial-card p {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.testimonial-featured p {
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(160, 174, 194, 0.22);
}

.testimonial-featured .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  color: var(--accent);
  font-weight: 800;
}

.testimonial-featured .author-avatar {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.2);
}

.author-info strong {
  display: block;
  color: var(--text);
  font-size: 0.96rem;
}

.author-info span {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.testimonial-featured .author-info strong {
  color: var(--white);
}

.testimonial-featured .author-info span {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 920px) {
  .result-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-header {
  text-align: center;
}

.pricing-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(160, 174, 194, 0.3);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow-md);
}

.pricing-featured {
  border-color: rgba(37, 99, 235, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(234, 242, 255, 0.9) 100%);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-label {
  margin-top: 0.1rem;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.pricing-price strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.pricing-price span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 1px solid rgba(160, 174, 194, 0.22);
  flex: 1;
}

.pricing-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pricing-features li::before {
  content: '';
  width: 0.66rem;
  height: 0.66rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent) 0%, #22c55e 100%);
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-compare-link {
  margin-top: 1.75rem;
  text-align: center;
}

@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.cta-yc {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #111c30 55%, #1b3a73 100%);
  text-align: center;
}

.cta-yc::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(56, 189, 248, 0.12), transparent 22%),
    radial-gradient(circle at 85% 68%, rgba(34, 197, 94, 0.14), transparent 20%);
  pointer-events: none;
}

.cta-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 0.9rem;
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-head {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--white);
  text-wrap: balance;
}

.cta-sub {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.8;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.site-footer {
  padding: 2rem 0 2.6rem;
  background: transparent;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(160, 174, 194, 0.28);
}

.footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

#channels,
#features,
#replace-stack,
#results,
#pricing {
  scroll-margin-top: 6rem;
}

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

@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;
    scroll-behavior: auto !important;
  }
}
