/* ==========================================================================
   Enterprise AI Toolkit design system
   Light, blue-forward, corporate. One blue does the work; green only for Live.
   Tokens mirror the brief (section 2) one to one.
   ========================================================================== */

/* ---------- Fonts (self-hosted Inter, latin) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
}

:root {
  /* Color */
  --bg-page: #ffffff;
  --bg-subtle: #f7f9fc;
  --bg-muted: #eef2f8;
  --border: #e4e9f2;
  --text-primary: #0b1b33;
  --text-body: #475467;
  --text-muted: #5c6b80;
  --primary: #2557d6;
  --primary-hover: #1e47b0;
  --primary-navy: #0b2545;
  --accent-live: #12b76a;
  --accent-soon: #98a2b3;
  --accent-wash: #eaf0fe;
  --accent-wash-border: #cdddfb;
  --border-hover: #d3dbe8;
  --accent-live-wash: #e3f4eb;
  --accent-live-text: #067043;

  /* Elevation */
  --shadow-rest: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-hover: 0 8px 24px rgba(16, 24, 40, 0.08);
  --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.04);

  /* Shape */
  --radius-card: 12px;
  --radius-btn: 10px;
  --radius-pill: 9999px;

  /* Layout */
  --max-width: 1200px;
  --gutter: 24px;
  --section-pad: 112px;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 180ms;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* clears the sticky header on anchor jumps */
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-hover);
}

button {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* On deep navy panels the brand-blue ring is too low-contrast; use white */
.band-navy :focus-visible,
.final-cta :focus-visible {
  outline-color: #ffffff;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: top var(--dur) var(--ease);
}

.skip-link:focus {
  top: 16px;
  color: #fff;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-pad);
}

.section--subtle {
  background: var(--bg-subtle);
}

.section--tight {
  padding-block: 72px;
}

.section-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 56px;
}

.section-head p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-body);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ---------- Typography ---------- */
h1,
h2,
h3 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(30px, 4vw, 40px);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
}

.lead {
  font-size: 18px;
  color: var(--text-body);
}

.muted {
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  min-height: 44px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
    border-color var(--dur) var(--ease), color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}

.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--dur) var(--ease);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-rest);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  box-shadow: var(--shadow-hover);
}

.btn-primary:hover .icon {
  transform: translateX(3px);
}

.btn-secondary {
  background: #fff;
  color: var(--text-primary);
  border-color: var(--border);
  box-shadow: var(--shadow-rest);
}

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

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding-inline: 4px;
}

.btn-ghost:hover {
  color: var(--primary-hover);
}

.btn-ghost:hover .icon {
  transform: translateX(3px);
}

/* On navy panels */
.btn-on-navy-primary {
  background: #fff;
  color: var(--primary-navy);
}

.btn-on-navy-primary:hover {
  background: var(--accent-wash);
  color: var(--primary-navy);
}

.btn-on-navy-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-on-navy-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-block {
  width: 100%;
}

/* ---------- Status pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.pill-live {
  background: var(--accent-live-wash);
  color: var(--accent-live-text);
}

.pill-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-live);
}

.pill-soon {
  background: var(--bg-muted);
  color: var(--text-muted);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease),
    border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--border);
}

@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
  }
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 700;
}

.brand img {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--dur) var(--ease);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-signin {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 8px;
  cursor: pointer;
  color: var(--text-primary);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: 80px 96px;
  background: linear-gradient(180deg, var(--accent-wash) 0%, var(--bg-page) 64%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  margin-top: 20px;
}

.hero .lead {
  margin-top: 22px;
  max-width: 30em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-line .check {
  width: 16px;
  height: 16px;
  color: var(--accent-live);
  flex: none;
}

.hero-visual {
  width: 100%;
}

.hero-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(16, 24, 40, 0.1));
}

/* ---------- Standards strip ---------- */
.standards {
  background: var(--bg-subtle);
  border-block: 1px solid var(--border);
  padding-block: 28px;
}

.standards .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
}

.standards-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.standards-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: var(--shadow-rest);
}

/* ---------- Toolkit grid ---------- */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.tool-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--border-hover);
}

.tool-card--soon {
  opacity: 0.92;
  background: var(--bg-subtle);
}

.tool-card--soon:hover {
  transform: none;
}

.tool-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-wash);
  color: var(--primary);
}

.tile svg {
  width: 26px;
  height: 26px;
}

.tool-card--soon .tile {
  background: var(--bg-muted);
  color: var(--accent-soon);
}

.tool-card h3 {
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 15px;
  flex: 1 1 auto;
  margin-bottom: 22px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.step {
  text-align: left;
}

.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
}

.step-art {
  margin-block: 18px 22px;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-subtle);
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.feature:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.feature .tile {
  margin-bottom: 18px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 15px;
}

/* ---------- Product showcase ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.showcase-copy .lead {
  margin-top: 18px;
}

.showcase-copy .btn {
  margin-top: 28px;
}

.showcase-figure {
  margin: 0;
}

.showcase-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  filter: drop-shadow(0 20px 44px rgba(16, 24, 40, 0.14));
}

.showcase-figure figcaption {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- Audience ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.audience-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.audience-card .tile {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.audience-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 15px;
}

/* ---------- Security band (navy) ---------- */
.band-navy {
  background: var(--primary-navy);
  color: #fff;
}

.band-navy h2 {
  color: #fff;
}

.band-navy .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.security-item {
  text-align: left;
}

.security-item .s-icon {
  width: 40px;
  height: 40px;
  color: #fff;
  margin-bottom: 16px;
}

.security-item h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 6px;
}

.security-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.band-note {
  margin-top: 48px;
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary .chev {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--text-muted);
  transition: transform var(--dur) var(--ease);
}

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

.faq-answer {
  padding-bottom: 24px;
  max-width: 64ch;
  color: var(--text-body);
}

.faq-answer a {
  font-weight: 600;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--primary-navy);
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  max-width: 16ch;
  margin-inline: auto;
}

.final-cta p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .hero-cta {
  justify-content: center;
  margin-top: 36px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding-block: 72px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px 24px;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 34ch;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-soon {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-soon);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 1px 7px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom .made {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Scroll reveal (only hides when JS is active) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Mobile menu panel ---------- */
.mobile-menu {
  display: none;
}

/* ==========================================================================
   Subpages (tool page, legal, about, 404)
   ========================================================================== */
.subpage {
  padding-block: 72px 96px;
  background: linear-gradient(180deg, var(--accent-wash) 0%, var(--bg-page) 280px);
}

.subpage .container {
  max-width: 860px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.subpage h1 {
  font-size: clamp(32px, 5vw, 46px);
  margin-bottom: 16px;
}

.subpage > .container > .lead {
  margin-bottom: 8px;
  max-width: 56ch;
}

.prose {
  margin-top: 36px;
}

.prose h2 {
  font-size: 22px;
  margin: 36px 0 12px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 14px;
  max-width: 68ch;
}

.prose ul.bullets {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
  max-width: 68ch;
}

.prose ul.bullets li {
  margin-bottom: 8px;
}

.notice {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  background: var(--accent-wash);
  border: 1px solid var(--accent-wash-border);
  border-radius: var(--radius-card);
  color: var(--text-body);
  font-size: 15px;
  margin: 8px 0 28px;
}

.notice svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex: none;
  margin-top: 2px;
}

.tool-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tool-hero .pill {
  margin-bottom: 16px;
}

.tool-hero-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(16, 24, 40, 0.12));
}

.checklist {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-body);
}

.checklist svg {
  width: 22px;
  height: 22px;
  color: var(--accent-live);
  flex: none;
  margin-top: 1px;
}

@media (max-width: 860px) {
  .tool-hero {
    grid-template-columns: 1fr;
  }
  .tool-hero-visual {
    order: -1;
    max-width: 520px;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --section-pad: 88px;
  }
  .hero-grid {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-block: 56px 72px;
  }
  .hero-visual {
    order: -1;
    max-width: 520px;
  }

  .tool-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .security-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 64px;
  }
  .container {
    padding-inline: 20px;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .tool-grid,
  .feature-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-cta .btn,
  .final-cta .btn {
    width: 100%;
  }
  .standards .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Mobile menu open state (toggled via JS) ---------- */
body.menu-open {
  overflow: hidden;
}

.mobile-menu.is-open {
  display: block;
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: #fff;
  padding: 24px;
  border-top: 1px solid var(--border);
  animation: fade-in var(--dur) var(--ease);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu nav a {
  padding: 14px 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 20px;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
