:root {
  color-scheme: light;
  --bg: #edf3f8;
  --bg-soft: #f7fafc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-soft: rgba(245, 247, 251, 0.9);
  --surface-elevated: rgba(255, 255, 255, 0.97);
  --border: rgba(24, 34, 51, 0.08);
  --border-strong: rgba(24, 34, 51, 0.14);
  --text: #182233;
  --muted: #66758e;
  --muted-strong: #4c5b74;
  --accent: #8b6748;
  --accent-strong: #b48763;
  --accent-contrast: #ffffff;
  --accent-soft: rgba(139, 103, 72, 0.12);
  --accent-soft-strong: rgba(139, 103, 72, 0.2);
  --shadow: 0 28px 72px rgba(15, 23, 42, 0.13);
  --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.08);
  --ring: 0 0 0 4px rgba(139, 103, 72, 0.16);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --bg: #07101a;
  --bg-soft: #0d1825;
  --surface: rgba(11, 20, 31, 0.8);
  --surface-strong: rgba(13, 24, 37, 0.93);
  --surface-soft: rgba(18, 31, 46, 0.94);
  --surface-elevated: rgba(14, 26, 41, 0.98);
  --border: rgba(186, 199, 221, 0.12);
  --border-strong: rgba(186, 199, 221, 0.2);
  --text: #eef4ff;
  --muted: #9fb0c5;
  --muted-strong: #d0dbeb;
  --accent: #d1a47c;
  --accent-strong: #e5bc93;
  --accent-contrast: #10161f;
  --accent-soft: rgba(209, 164, 124, 0.16);
  --accent-soft-strong: rgba(209, 164, 124, 0.24);
  --shadow: 0 30px 84px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 36px rgba(0, 0, 0, 0.24);
  --ring: 0 0 0 4px rgba(209, 164, 124, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 10%, transparent), transparent 32%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  transition: background-color 0.28s ease, color 0.22s ease;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}
.hidden { display: none !important; }
.muted { color: var(--muted); }
.muted-strong { color: var(--muted-strong); }

.site-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient-orb {
  position: absolute;
  pointer-events: none;
  width: 22rem;
  height: 22rem;
  left: -8rem;
  top: -7rem;
  border-radius: 999px;
  opacity: 0.32;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent) 0%, transparent 70%);
}
.theme-transition-layer {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent) 14%, transparent), transparent 62%);
}
.theme-transition-layer.is-animating { animation: themeFlash .52s ease; }

.site-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 20px clamp(12px, 2vw, 18px) 44px;
}
.topbar {
  position: sticky;
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 24px;
  margin-bottom: 18px;
  backdrop-filter: saturate(140%) blur(14px);
  z-index: 20;
}
.section-surface {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 5px solid var(--accent);
  background: transparent;
  box-shadow: none;
}
.brand-title {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.01em;
}
.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topnav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 14px;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}
.topnav a:hover {
  transform: translateY(-1px);
  background: var(--surface-soft);
  border-color: var(--border);
  color: var(--text);
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.primary-btn,
.ghost-btn,
.theme-toggle {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}
.primary-btn::before,
.ghost-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.24) 45%, transparent 68%);
  transform: translateX(-160%);
  transition: transform .5s ease;
}
.primary-btn:hover::before,
.ghost-btn:hover::before { transform: translateX(160%); }
.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--accent-contrast);
  box-shadow: var(--shadow-soft);
}
.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--accent) 26%, transparent);
}
.ghost-btn,
.theme-toggle {
  background: color-mix(in srgb, var(--surface-soft) 84%, transparent);
  color: var(--text);
  border-color: var(--border);
}
.ghost-btn:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  background: color-mix(in srgb, var(--surface-soft) 74%, var(--accent-soft));
}
.ghost-btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.compact { min-height: 40px; padding: 0 16px; }
.theme-toggle { padding-right: 16px; }
.theme-toggle-track {
  width: 36px;
  height: 22px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 22%, var(--surface-soft));
  position: relative;
  flex: 0 0 auto;
}
.theme-toggle-thumb {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  top: 4px;
  left: 4px;
  transition: transform .24s ease;
}
:root[data-theme='dark'] .theme-toggle-thumb { transform: translateX(14px); }

.site-main { display: grid; gap: 28px; }
.hero-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: 28px;
  padding: 30px;
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: auto -2rem -7rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 68%);
  z-index: -1;
}
.hero-copy,
.hero-rail {
  min-width: 0;
}
.hero-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
}
.hero-section h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: -.04em;
  line-height: .94;
}
.hero-section h1 { font-size: clamp(46px, 6vw, 72px); max-width: 11ch; }
.hero-lead {
  margin: 0;
  max-width: 720px;
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1.16;
  letter-spacing: -.03em;
  font-weight: 750;
}
.hero-description,
.section-copy,
.section-side-note span,
.subsection-head p,
.lead-copy p {
  margin: 0;
  font-size: 17px;
}
.hero-tags,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag,
.count-badge,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-soft) 88%, transparent);
  border: 1px solid var(--border);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.proof-card,
.metric-card,
.route-card,
.workflow-card,
.pricing-card,
.lead-point,
.section-side-note,
.docs-hub-card {
  background: color-mix(in srgb, var(--surface-soft) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.proof-card,
.metric-card,
.route-card,
.workflow-card,
.pricing-card,
.docs-hub-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
.proof-card:hover,
.metric-card:hover,
.route-card:hover,
.workflow-card:hover,
.pricing-card:hover,
.docs-hub-card:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--border));
  box-shadow: 0 20px 42px color-mix(in srgb, var(--accent) 12%, transparent);
}
.proof-card {
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}
.proof-card span,
.workflow-step,
.metric-card strong,
.route-card strong,
.docs-hub-copy .eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.proof-card strong {
  font-size: 18px;
  line-height: 1.25;
}
.hero-rail {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 90%, var(--accent-soft)), var(--surface));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-rail::before {
  content: '';
  position: absolute;
  inset: -1px auto auto -14%;
  width: 48%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 72%, transparent), transparent);
}
.hero-rail-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.hero-rail-head h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.hero-rail-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.metric-stack,
.route-steps,
.workflow-grid,
.pricing-grid,
.pricing-columns,
.lead-section,
.docs-hub-grid {
  display: grid;
  gap: 14px;
}
.metric-stack { grid-template-columns: 1fr; }
.metric-card {
  padding: 18px;
  display: grid;
  gap: 8px;
}
.metric-card span {
  font-size: 19px;
  font-weight: 680;
  line-height: 1.35;
}
.route-shell {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}
.route-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.route-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.route-card,
.workflow-card {
  padding: 18px;
  display: grid;
  gap: 10px;
}
.route-card p,
.workflow-card p {
  margin: 0;
  font-size: 16px;
  color: var(--muted-strong);
}
.section-block,
.lead-section {
  padding: 30px;
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}
.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .68fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}
.section-heading h2 {
  font-size: clamp(38px, 4.6vw, 58px);
  max-width: 11ch;
}
.section-side-note {
  padding: 20px 22px;
  display: grid;
  gap: 8px;
  align-content: center;
}
.section-side-note strong {
  font-size: 22px;
  line-height: 1.2;
}
.workflow-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.workflow-card { min-height: 148px; }
.pricing-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.section-card {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
  box-shadow: var(--shadow);
}
.subsection-head {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}
.subsection-head h3 {
  margin: 6px 0 0;
  font-size: clamp(34px, 3vw, 46px);
  line-height: .96;
  letter-spacing: -.03em;
}
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pricing-grid.compact { grid-template-columns: 1fr; }
.pricing-card {
  padding: 22px;
  display: grid;
  gap: 14px;
  min-height: 190px;
}
.pricing-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.14;
}
.row-between {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.price {
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.03em;
}
.lead-section {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
  align-items: center;
}
.lead-copy {
  display: grid;
  gap: 16px;
}
.lead-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  line-height: .96;
  letter-spacing: -.04em;
  max-width: 10ch;
}
.lead-points { display: grid; gap: 12px; }
.lead-point {
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.lead-point strong {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex: 0 0 auto;
}
.lead-form {
  padding: 22px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: center;
}
.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted-strong);
}
.lead-form label span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 800;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text);
  padding: 14px 16px;
}
.lead-form textarea {
  resize: vertical;
  min-height: 132px;
}
.full { grid-column: 1 / -1; }
.lead-form-actions {
  display: grid;
  gap: 10px;
}
.inline-status {
  min-height: 22px;
  font-size: 14px;
  font-weight: 700;
}
.inline-status.success { color: #1d8f57; }
.inline-status.error { color: #c04242; }
.inline-status.pending { color: var(--accent); }

.docs-hub-dialog {
  width: min(760px, calc(100vw - 24px));
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0;
  background: color-mix(in srgb, var(--surface-elevated) 96%, transparent);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  color: var(--text);
  opacity: 0;
  transform: translateY(10px) scale(.992);
  will-change: transform, opacity;
  contain: layout style paint;
}

.docs-hub-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: docsDialogIn .16s cubic-bezier(.2, .8, .2, 1);
}
.docs-hub-dialog::backdrop {
  background: rgba(7, 12, 18, 0.46);
}
.docs-hub-shell {
  margin: 0;
  padding: 24px;
  display: grid;
  gap: 16px;
  position: relative;
}
.dialog-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-soft) 88%, transparent);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.docs-hub-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-right: 54px;
}
.docs-hub-head h2 {
  margin: 6px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.03em;
}
.docs-hub-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.docs-hub-card {
  padding: 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.docs-hub-card.is-disabled {
  opacity: 0.72;
  box-shadow: none;
}
.docs-hub-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 18%, var(--surface-soft)), color-mix(in srgb, var(--accent) 10%, var(--surface-soft)));
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--border));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.docs-hub-icon svg {
  width: 28px;
  height: 28px;
}
.docs-hub-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
  align-content: center;
}
.docs-hub-copy h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.docs-hub-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity .56s ease,
    transform .56s cubic-bezier(.2,.65,.24,1),
    filter .56s ease;
  transition-delay: calc(var(--reveal-index, 0) * 60ms);
  filter: saturate(.95);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: saturate(1);
}

@keyframes themeFlash {
  0% { opacity: 0; }
  30% { opacity: .55; }
  100% { opacity: 0; }
}
@keyframes docsDialogIn {
  0% { opacity: 0; transform: translateY(10px) scale(.992); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1100px) {
  .hero-section,
  .section-heading.split,
  .pricing-columns,
  .lead-section,
  .subsection-head {
    grid-template-columns: 1fr;
  }
  .hero-section h1 { max-width: 12ch; }
}

@media (max-width: 860px) {
  .site-shell { padding-top: 14px; }
  .topbar { position: static; }
  .hero-section,
  .section-block,
  .lead-section { padding: 22px; }
  .hero-status-row,
  .workflow-grid,
  .route-steps,
  .pricing-grid,
  .docs-hub-grid { grid-template-columns: 1fr; }
  .topbar,
  .topbar-actions { align-items: stretch; }
  .topbar { flex-direction: column; }
  .topnav { justify-content: flex-start; }
  .topbar-actions { width: 100%; justify-content: stretch; }
  .topbar-actions > * { flex: 1 1 auto; }
  .lead-form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-shell {
    padding-top: 12px;
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
    padding-bottom: 28px;
  }
  .topbar {
    padding: 12px;
    border-radius: 20px;
    gap: 10px;
  }
  .section-surface,
  .section-card,
  .hero-rail,
  .docs-hub-dialog {
    border-radius: 24px;
  }
  .brand { width: 100%; }
  .brand-title { font-size: 14px; }
  .topnav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .topnav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 8px;
    text-align: center;
  }
  .topbar-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .topbar-actions > * { width: 100%; }
  .hero-section,
  .section-block,
  .lead-section { padding: 18px; }
  .section-card,
  .hero-rail,
  .lead-form,
  .docs-hub-shell { padding: 18px; }
  .hero-section h1,
  .section-heading h2,
  .lead-copy h2 { max-width: none; }
  .hero-section h1 {
    font-size: 34px;
    line-height: 0.98;
  }
  .section-heading h2 {
    font-size: 32px;
    line-height: 1;
  }
  .lead-copy h2 {
    font-size: 34px;
    line-height: 0.98;
  }
  .subsection-head h3 {
    font-size: 28px;
    line-height: 1.02;
  }
  .hero-lead {
    font-size: 18px;
    line-height: 1.2;
  }
  .hero-description,
  .section-copy,
  .section-side-note span,
  .subsection-head p,
  .lead-copy p,
  .route-card p,
  .workflow-card p,
  .docs-hub-head p {
    font-size: 15px;
    line-height: 1.5;
  }
  .proof-card strong,
  .metric-card span,
  .pricing-card h3,
  .docs-hub-copy h3 {
    font-size: 17px;
  }
  .hero-rail-head,
  .route-head,
  .row-between,
  .docs-hub-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions,
  .docs-hub-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions > *,
  .docs-hub-actions > * { width: 100%; }
  .docs-hub-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .docs-hub-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

@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;
  }
  .site-ambient {
    display: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
