:root {
  --bg: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-code: #0f172a;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --accent: #0284c7;
  --accent-dim: rgba(2, 132, 199, 0.1);
  --accent-glow: rgba(2, 132, 199, 0.25);
  --cta-btn: #0284c7;
  --cta-btn-hover: #0369a1;
  --cta-orange: #ea580c;
  --cta-orange-hover: #c2410c;
  --danger: #dc2626;
  --success: #16a34a;
  --warning: #d97706;
  --border: #e2e8f0;
  --border-hover: #94a3b8;
  --gradient-start: #0284c7;
  --gradient-end: #4f46e5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-shrink: 0;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--cta-orange);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.02rem;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.nav-cta:hover {
  background: var(--cta-orange-hover);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(2,132,199,0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(79,70,229,0.05), transparent);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  color: #1d4ed8;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(29,78,216,0.1);
}

.badge-dot {
  width: 10px; height: 10px;
  background: #2563eb;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #0f172a;
}

.gradient-text {
  color: #0284c7;
  background: linear-gradient(135deg, #0284c7, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: #334155;
  max-width: 780px;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-subtitle strong {
  color: #0f172a;
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.hero-guarantee svg {
  width: 22px; height: 22px;
  color: #16a34a;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--cta-orange);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(234, 88, 12, 0.4);
}

.btn-primary:hover {
  background: var(--cta-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(234, 88, 12, 0.55);
}

.btn-secondary {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid #cbd5e1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.btn-secondary:hover {
  border-color: #0284c7;
  color: #0284c7;
  background: #f8fafc;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
}

/* Code preview */
.code-preview {
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 16px;
  overflow: hidden;
  max-width: 920px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: #1e293b;
  border-bottom: 1px solid #334155;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.code-title {
  margin-left: 8px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 700;
}

.code-body {
  padding: 24px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.98rem;
  line-height: 1.8;
  overflow-x: auto;
  color: #f8fafc;
}

.code-body .comment { color: #64748b; font-weight: 600; }
.code-body .added { color: #4ade80; font-weight: 700; }
.code-body .removed { color: #f87171; font-weight: 700; }
.code-body .unchanged { color: #cbd5e1; }

/* Trust bar */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.trust-label {
  text-align: center;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 800;
}

.trust-item svg {
  width: 22px; height: 22px;
  color: #0284c7;
  flex-shrink: 0;
}

.incident-label {
  color: #475569;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.incident-section {
  padding: 72px 0 24px;
  background: var(--bg);
}

.incident-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 42px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.incident-title {
  max-width: 720px;
  margin: 8px 0 12px;
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.incident-intro {
  max-width: 780px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

.incident-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.incident-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  color: #334155;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  line-height: 1.45;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.incident-card strong {
  color: #0f172a;
  font-size: 0.92rem;
}

.incident-card span {
  font-size: 0.92rem;
}

.incident-card:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 14px rgba(2, 132, 199, 0.12);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  color: #0284c7;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.25;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.section-desc {
  color: #334155;
  font-size: 1.2rem;
  line-height: 1.65;
  font-weight: 500;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.step-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  padding: 36px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.step-card:hover {
  border-color: #0284c7;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(2,132,199,0.12);
}

.step-number {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 3.2rem;
  font-weight: 900;
  color: #cbd5e1;
  line-height: 1;
}

.step-icon {
  width: 52px; height: 52px;
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #0284c7;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
}

.step-desc {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 500;
}

.step-desc code {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  color: #0f172a;
  font-weight: 700;
}

/* Proof vs Guesswork comparison */
.compare-wrap {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #cbd5e1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-row + .compare-row { border-top: 2px solid #e2e8f0; }

.compare-cell {
  padding: 22px 30px;
  font-size: 1.05rem;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.compare-cell.them {
  background: #fff5f5;
  color: #7f1d1d;
  font-weight: 600;
}

.compare-cell.us {
  background: #f0fdf4;
  color: #14532d;
  font-weight: 800;
}

.compare-cell svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.compare-cell.them svg { color: #dc2626; }
.compare-cell.us svg { color: #16a34a; }

.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-head-cell {
  padding: 20px 30px;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-head-cell.them { background: #fee2e2; color: #991b1b; }
.compare-head-cell.us {
  background: #0284c7;
  color: #ffffff;
}

.compare-footnote {
  text-align: center;
  color: #475569;
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 28px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

/* Pricing */
.pricing-card {
  max-width: 540px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 3px solid #ea580c;
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.18);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-grid .pricing-card {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
}

.pricing-grid .pricing-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.dev-card {
  border-color: #0284c7;
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.14);
}

.dev-badge {
  background: #0284c7;
}

.dev-card .full-width-button {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.3);
}

.dev-card .full-width-button:hover {
  background: #0369a1;
  border-color: #0369a1;
  color: #ffffff;
  box-shadow: 0 10px 32px rgba(2, 132, 199, 0.4);
}

.pricing-badge {
  background: #ea580c;
  color: #ffffff;
  text-align: center;
  padding: 12px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-inner {
  padding: 40px 44px 44px;
}

.pricing-name {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #0f172a;
}

.pricing-desc {
  color: #334155;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}

.pricing-price-note {
  margin: -4px 0 4px;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
}

.price-period {
  color: #64748b;
  font-size: 1rem;
  font-weight: 700;
}

.price-current {
  font-size: 3.8rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.price-original {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-callout {
  background: #fff7ed;
  border: 2px solid #ffedd5;
  color: #c2410c;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 20px 0 0;
  line-height: 1.5;
  height: 124px;
  box-sizing: border-box;
  display: grid;
  align-content: center;
}

.pricing-features {
  list-style: none;
  margin: 28px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-features strong {
  font-weight: inherit;
}

.pricing-grid .pricing-features {
  flex: 1;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features svg {
  width: 22px; height: 22px;
  color: #16a34a;
  flex-shrink: 0;
}

.full-width-button {
  width: 100%;
  justify-content: center;
}

.pricing-grid .full-width-button {
  min-height: 60px;
}

/* Install */
.install-section {
  background: var(--bg-elevated);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  border: 1px solid var(--border);
}

.install-title {
  margin-bottom: 8px;
}

.install-description {
  margin-bottom: 32px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 0 auto 32px;
  max-width: 900px;
}

.download-link {
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}

.download-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.command-label {
  color: var(--text-secondary);
  font-weight: 700;
  margin-top: 20px;
}

.install-command {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-code);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  margin: 10px 0 16px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 600;
  max-width: 100%;
  overflow-x: auto;
  transition: all 0.2s;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.install-command:hover {
  border-color: var(--border-hover);
}

.install-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item summary svg {
  width: 20px; height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  padding-bottom: 24px;
  animation: faq-reveal 0.25s ease;
}

@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-answer code {
  background: var(--bg-code);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  color: var(--accent);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.cta-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(34,211,238,0.08), transparent);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}

.relative-container {
  position: relative;
}

.large-cta-button {
  font-size: 1.1rem;
  padding: 16px 32px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-elevated);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 1rem;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.legal-copy {
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.5;
  max-width: 680px;
}

.legal-copy p + p {
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links {
    gap: 0;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-callout { height: auto; min-height: 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 120px 0 60px; }
  .section { padding: 60px 0; }
  .install-section { padding: 32px 24px; }
  .pricing-inner { padding: 40px 24px 32px; }
  .incident-section { padding: 48px 0 12px; }
  .incident-shell { padding: 28px 22px; }
  .incident-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-left { flex-direction: column; gap: 16px; }
  .trust-items { gap: 24px; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Selection */
::selection {
  background: var(--accent-dim);
  color: var(--accent);
}

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