:root {
  color-scheme: light;
  --page: #fafafa;
  --section: #f4f4f5;
  --elevated: #ffffff;
  --foreground: #0a0a0a;
  --muted: #52525b;
  --subtle: #71717a;
  --border: rgba(0, 0, 0, 0.09);
  --border-strong: rgba(0, 0, 0, 0.17);
  --surface: rgba(0, 0, 0, 0.035);
  --glass: rgba(255, 255, 255, 0.72);
  --grid: rgba(0, 0, 0, 0.05);
  --input: rgba(255, 255, 255, 0.94);
  --accent: #6366f1;
  --glow: #a855f7;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #e11d48;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-display: "Syne", system-ui, sans-serif;
  --max: 1240px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.dark {
  color-scheme: dark;
  --page: #050505;
  --section: #0a0a0a;
  --elevated: #0c0c0e;
  --foreground: #ffffff;
  --muted: #a1a1aa;
  --subtle: #71717a;
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.2);
  --surface: rgba(255, 255, 255, 0.05);
  --glass: rgba(8, 8, 10, 0.72);
  --grid: rgba(255, 255, 255, 0.04);
  --input: rgba(0, 0, 0, 0.48);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: clip;
  background: var(--page);
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--foreground);
  background: var(--page);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

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

::selection {
  color: #ffffff;
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent), transparent 18%);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 1050px;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(92px);
  opacity: 0.23;
  animation: drift 12s ease-in-out infinite alternate;
}

.ambient-orb-one {
  top: 30px;
  left: -80px;
  width: 430px;
  height: 430px;
  background: #818cf8;
}

.ambient-orb-two {
  top: 100px;
  right: -70px;
  width: 440px;
  height: 440px;
  background: #a855f7;
  animation-delay: -4s;
}

.ambient-orb-three {
  top: 560px;
  left: 44%;
  width: 360px;
  height: 360px;
  background: #3b82f6;
  opacity: 0.12;
  animation-delay: -7s;
}

.dark .ambient-orb {
  opacity: 0.19;
}

.grid-field {
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--page) 78%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--page) 90%, transparent);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: 82px;
  margin-inline: auto;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.product-label {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.desktop-nav > a,
.desktop-nav .nav-trigger,
.footer-links a {
  transition: color 160ms ease;
}

.desktop-nav > a:hover,
.desktop-nav .nav-trigger:hover,
.footer-links a:hover {
  color: var(--accent);
}

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-trigger svg {
  width: 11px;
  height: 11px;
  opacity: 0.7;
  transition: transform 160ms ease;
}

.nav-dropdown.open .nav-trigger svg {
  transform: rotate(180deg);
}

.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 120;
  display: none;
  width: min(520px, calc(100vw - 48px));
  /* Top padding is an invisible hover bridge (no dead gap under the trigger) */
  padding: 14px 18px 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
}

.mega-panel::after {
  content: '';
  position: absolute;
  top: 14px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--page);
  box-shadow: 0 24px 60px color-mix(in srgb, #000 16%, transparent);
  pointer-events: none;
}

.mega-industries {
  width: min(640px, calc(100vw - 48px));
}

.nav-dropdown.open .mega-panel {
  display: block;
}

.mega-label {
  margin: 0 0 12px;
  color: var(--subtle);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-item {
  display: grid;
  gap: 4px;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--foreground);
  transition: background 140ms ease;
}

.mega-item:hover {
  background: color-mix(in srgb, var(--surface), var(--foreground) 4%);
}

.mega-item-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-transform: none;
}

.mega-item-title em {
  padding: 2px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-item-desc {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.mega-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 10px;
}

.mega-chip {
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--foreground);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: background 140ms ease, color 140ms ease;
}

.mega-chip:hover {
  background: color-mix(in srgb, var(--surface), var(--foreground) 4%);
  color: var(--accent);
}

.mega-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.mega-footer-row a {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-login {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 550;
  transition: color 160ms ease;
}

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

.nav-cta {
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.mobile-group {
  width: min(calc(100% - 40px), 420px);
  border-bottom: 1px solid var(--border);
}

.mobile-group summary {
  padding: 16px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

.mobile-group summary::-webkit-details-marker {
  display: none;
}

.mobile-group a {
  display: block;
  padding: 10px 0 10px 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.theme-toggle,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--foreground);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.theme-toggle:hover,
.menu-toggle:hover {
  border-color: var(--border-strong);
  background: color-mix(in srgb, var(--surface), var(--foreground) 4%);
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sun-icon,
.dark .moon-icon {
  display: none;
}

.dark .sun-icon {
  display: block;
}

.menu-toggle {
  display: none;
  align-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: calc(100svh - 82px);
  padding: 32px;
  color: var(--foreground);
  background: var(--page);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 3rem);
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-nav .button {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--accent), transparent 70%);
}

.button-primary:hover {
  background: color-mix(in srgb, var(--accent), #000000 10%);
  box-shadow: 0 16px 42px color-mix(in srgb, var(--accent), transparent 60%);
}

.button-ghost {
  border-color: var(--border);
  color: var(--foreground);
  background: var(--surface);
}

.button-ghost:hover {
  color: var(--page);
  background: var(--foreground);
}

.button-invert {
  color: var(--page);
  background: var(--foreground);
}

.button-invert:hover {
  color: #ffffff;
  background: var(--accent);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.button-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.button-large {
  min-height: 52px;
  padding-inline: 28px;
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  min-height: calc(100svh - 82px);
  padding-block: 92px 110px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.micro-label {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--success), transparent 82%);
}

.hero h1,
.section-heading h2,
.demo-proof-copy h2,
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 30px;
  font-size: clamp(3.7rem, 6.9vw, 7.7rem);
  line-height: 0.9;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(110deg, var(--accent), var(--glow));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.55vw, 1.3rem);
  font-weight: 300;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

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

.website-form {
  max-width: 650px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.84rem;
  font-weight: 600;
}

.pilot-chip {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--warning), transparent 58%);
  border-radius: 999px;
  color: color-mix(in srgb, var(--warning), var(--foreground) 28%);
  background: color-mix(in srgb, var(--warning), transparent 89%);
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-row input {
  min-width: 0;
  min-height: 50px;
  flex: 1;
  padding: 0 17px;
  border: 1px solid var(--border);
  border-radius: 999px;
  outline: none;
  color: var(--foreground);
  background: var(--input);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent), transparent 85%);
}

.form-row input[aria-invalid="true"] {
  border-color: var(--danger);
}

.form-help,
.form-error {
  margin: 10px 4px 0;
  color: var(--subtle);
  font-size: 0.71rem;
  line-height: 1.45;
}

.form-help a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-error {
  min-height: 1em;
  color: var(--danger);
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 570px;
  justify-self: end;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 12% 5%;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 40%), color-mix(in srgb, var(--glow), transparent 45%));
  filter: blur(65px);
  opacity: 0.45;
}

.signal-card {
  position: relative;
  overflow: hidden;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 40px;
  background: color-mix(in srgb, var(--elevated) 84%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.signal-topline,
.workflow-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.signal-topline {
  position: relative;
  z-index: 2;
}

.signal-topline h2 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--success), transparent 60%);
  border-radius: 999px;
  color: color-mix(in srgb, var(--success), var(--foreground) 25%);
  background: color-mix(in srgb, var(--success), transparent 90%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.8s ease-out infinite;
}

.voice-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 250px;
  margin-block: 14px;
}

.voice-orb {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #ffffff;
  background: radial-gradient(circle at 35% 25%, #ffffff, #a5b4fc 12%, #6366f1 45%, #312e81 78%);
  box-shadow: 0 0 60px color-mix(in srgb, var(--accent), transparent 50%);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
}

.voice-ring {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 58%);
  border-radius: 50%;
  animation: breathe 3.2s ease-in-out infinite;
}

.voice-ring-one {
  width: 165px;
  height: 165px;
}

.voice-ring-two {
  width: 225px;
  height: 225px;
  animation-delay: -1.4s;
}

.waveform {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 20px;
}

.waveform i {
  display: block;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  animation: wave 1.1s ease-in-out infinite alternate;
}

.waveform i:nth-child(2),
.waveform i:nth-child(8) { animation-delay: -0.2s; }
.waveform i:nth-child(3),
.waveform i:nth-child(7) { animation-delay: -0.4s; }
.waveform i:nth-child(4),
.waveform i:nth-child(6) { animation-delay: -0.6s; }
.waveform i:nth-child(5) { animation-delay: -0.8s; }

.conversation-preview {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.conversation-preview p {
  max-width: 88%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.78rem;
  line-height: 1.45;
}

.conversation-preview p span {
  display: block;
  margin-bottom: 3px;
  color: var(--subtle);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversation-preview .agent-line {
  justify-self: end;
  border-color: color-mix(in srgb, var(--accent), transparent 68%);
  background: color-mix(in srgb, var(--accent), transparent 90%);
}

.action-path,
.workflow-path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.action-path {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  color: var(--subtle);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-path span,
.workflow-path span {
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.action-path i,
.workflow-path i {
  font-style: normal;
}

.floating-note {
  position: absolute;
  z-index: 4;
  min-width: 142px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: color-mix(in srgb, var(--elevated) 88%, transparent);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  margin-bottom: 4px;
  color: var(--subtle);
  font-size: 0.56rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 0.75rem;
}

.note-one {
  top: 35%;
  right: -40px;
}

.note-two {
  bottom: 12%;
  left: -48px;
}

.proof-rail {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: color-mix(in srgb, var(--page) 75%, transparent);
}

.proof-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.proof-track span {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  min-height: 90px;
  padding: 20px;
  border-right: 1px solid var(--border);
  color: var(--subtle);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.proof-track span:first-child {
  border-left: 1px solid var(--border);
}

.proof-track strong {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.content-section {
  padding-block: clamp(100px, 12vw, 170px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(48px, 6vw, 78px);
}

.section-heading h2,
.demo-proof-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.8vw, 6rem);
  line-height: 0.96;
}

.section-heading > p:last-child,
.split-heading > p,
.demo-proof-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 70px;
  max-width: none;
}

.split-heading h2 {
  margin-bottom: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.capability-card {
  position: relative;
  min-height: 415px;
  padding: clamp(27px, 3vw, 40px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--elevated) 48%, transparent);
  transition: background 200ms ease, transform 200ms ease;
}

.capability-card:hover {
  z-index: 2;
  background: var(--elevated);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-index {
  margin-bottom: 54px;
  color: var(--subtle);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.status-tag {
  display: inline-flex;
  width: max-content;
  padding: 6px 9px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.capability-card > .status-tag {
  position: absolute;
  top: 34px;
  right: 34px;
}

.status-live {
  border-color: color-mix(in srgb, var(--success), transparent 58%);
  color: color-mix(in srgb, var(--success), var(--foreground) 25%);
  background: color-mix(in srgb, var(--success), transparent 90%);
}

.status-pilot {
  border-color: color-mix(in srgb, var(--warning), transparent 58%);
  color: color-mix(in srgb, var(--warning), var(--foreground) 28%);
  background: color-mix(in srgb, var(--warning), transparent 90%);
}

.status-separate {
  border-color: color-mix(in srgb, var(--glow), transparent 55%);
  color: color-mix(in srgb, var(--glow), var(--foreground) 25%);
  background: color-mix(in srgb, var(--glow), transparent 90%);
}

.capability-card h3,
.workflow-card h3,
.onboarding-step h3,
.pilot-banner h3 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

.capability-card h3 {
  max-width: 12ch;
  margin-bottom: 15px;
  font-size: 1.52rem;
  line-height: 1.05;
}

.capability-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.6;
}

.capability-card ul {
  display: grid;
  gap: 9px;
  margin-bottom: 0;
  padding: 0;
  color: var(--subtle);
  font-size: 0.75rem;
  list-style: none;
}

.capability-card li::before {
  content: "↳";
  margin-right: 8px;
  color: var(--accent);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.workflow-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--elevated);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.workflow-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.workflow-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.13;
  pointer-events: none;
}

.commerce-card::after { background: #6366f1; }
.hospitality-card::after { background: #f59e0b; }
.receptionist-card::after { background: #10b981; }
.copilot-card::after { background: #a855f7; }

.workflow-meta > span:last-child {
  color: var(--subtle);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow-card h3 {
  max-width: 14ch;
  margin: 70px 0 17px;
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  line-height: 1.02;
}

.workflow-card > p {
  max-width: 52ch;
  margin-bottom: 32px;
  color: var(--muted);
  line-height: 1.65;
}

.workflow-path {
  color: var(--subtle);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.context-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #09090b;
}

.context-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, #000 5%, transparent 78%);
}

.context-shell {
  padding-block: clamp(100px, 12vw, 170px);
}

.context-shell .section-heading p:last-child {
  color: #a1a1aa;
}

.context-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(180px, 0.55fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 50px);
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
}

.context-flow .micro-label {
  color: #a5b4fc;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.source-list span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.65rem;
}

.flow-arrow {
  color: #71717a;
  font-size: 1.3rem;
}

.context-core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  text-align: center;
}

.core-halo {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(165, 180, 252, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.22), inset 0 0 50px rgba(168, 85, 247, 0.12);
}

.context-core strong {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 3rem;
}

.context-core small {
  position: absolute;
  bottom: 22px;
  z-index: 2;
  color: #a1a1aa;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guardrail-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  max-width: 850px;
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 2px solid #818cf8;
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.025);
}

.guardrail-note span {
  color: #a5b4fc;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guardrail-note p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.55;
}

.integration-board {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--elevated);
}

.integration-group {
  min-height: 330px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--border);
}

.integration-group:last-child {
  border-right: 0;
}

.integration-planned {
  background: var(--surface);
}

.integration-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
  margin-top: 58px;
}

.integration-list span {
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--page);
  font-size: 0.76rem;
}

.integration-group:first-child .integration-list span {
  border-color: color-mix(in srgb, var(--success), transparent 68%);
}

.integration-disclosure {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 0.73rem;
  line-height: 1.55;
}

.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border-strong);
}

.onboarding-step {
  min-height: 300px;
  padding: 30px 24px 26px 0;
  border-right: 1px solid var(--border);
}

.onboarding-step:not(:first-child) {
  padding-left: 24px;
}

.onboarding-step:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: 78px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.73rem;
}

.onboarding-step h3 {
  margin-bottom: 13px;
  font-size: 1.5rem;
}

.onboarding-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.pilot-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 45px;
  padding: clamp(28px, 4vw, 45px);
  border: 1px solid color-mix(in srgb, var(--warning), transparent 70%);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--warning), transparent 94%);
}

.pilot-banner h3 {
  margin: 18px 0 8px;
  font-size: 1.6rem;
}

.pilot-banner p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.demo-proof-section {
  overflow: hidden;
  padding-block: clamp(100px, 12vw, 170px);
  border-block: 1px solid var(--border);
  background:
    radial-gradient(circle at 10% 20%, color-mix(in srgb, var(--accent), transparent 83%), transparent 35%),
    radial-gradient(circle at 85% 70%, color-mix(in srgb, var(--glow), transparent 87%), transparent 35%),
    var(--section);
}

.demo-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.demo-proof-copy h2 {
  margin-bottom: 24px;
}

.demo-proof-copy > p:not(.eyebrow) {
  margin-bottom: 34px;
}

.outcome-timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-strong);
  list-style: none;
}

.outcome-timeline li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.outcome-timeline li > span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.68rem;
}

.outcome-timeline strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.outcome-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 150px);
}

.faq-section .section-heading {
  margin-bottom: 0;
}

.faq-section .section-heading h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.faq-list {
  border-top: 1px solid var(--border-strong);
}

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

.faq-question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 82px;
  padding: 22px 0;
  color: var(--foreground);
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 300;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.faq-question[aria-expanded="true"] i {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--muted);
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding-right: 52px;
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0;
  transition: opacity 180ms ease, margin 220ms ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  margin-bottom: 28px;
  opacity: 1;
}

.final-cta {
  overflow: hidden;
  margin-bottom: 34px;
  padding: clamp(60px, 9vw, 112px);
  border-radius: 40px;
  color: #ffffff;
  background: #09090b;
  text-align: center;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.42), rgba(168, 85, 247, 0.13) 45%, transparent 72%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta > *:not(.final-cta-glow) {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
  color: #a5b4fc;
}

.final-cta h2 {
  max-width: 15ch;
  margin: 0 auto 42px;
  font-size: clamp(2.7rem, 6vw, 6.3rem);
  line-height: 0.95;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}

.final-cta .button-invert {
  color: #09090b;
  background: #ffffff;
}

.final-cta .button-invert:hover {
  color: #ffffff;
  background: var(--accent);
}

.site-footer {
  padding: 58px 0 36px;
  border-top: 1px solid var(--border);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 44px;
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.footer-wordmark {
  margin-bottom: 13px;
}

.footer-shell > div:first-child p,
.copyright {
  color: var(--subtle);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.noscript-note {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 200;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--foreground);
  background: var(--elevated);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  text-align: center;
}

.noscript-note a {
  color: var(--accent);
  text-decoration: underline;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 680ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from { transform: translate3d(-15px, -10px, 0) scale(0.96); }
  to { transform: translate3d(20px, 25px, 0) scale(1.08); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.45; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--success), transparent 25%); }
  75%, 100% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--success), transparent 100%); }
}

@keyframes wave {
  from { height: 5px; opacity: 0.55; }
  to { height: 19px; opacity: 1; }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 22px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 50px;
  }

  .note-one {
    right: -15px;
  }

  .note-two {
    left: -15px;
  }

  .capability-card {
    min-height: 440px;
  }
}

@media (max-width: 960px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-demo,
  .nav-login,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 85px 105px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-stage {
    max-width: 660px;
    justify-self: center;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-heading h2 {
    margin-bottom: 0;
  }

  .context-flow {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .source-list {
    justify-content: center;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .context-core {
    min-height: 180px;
  }

  .integration-board {
    grid-template-columns: 1fr;
  }

  .integration-group {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .integration-group:last-child {
    border-bottom: 0;
  }

  .integration-list {
    margin-top: 30px;
  }

  .onboarding-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .onboarding-step:nth-child(2) {
    border-right: 0;
  }

  .onboarding-step:nth-child(3),
  .onboarding-step:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .demo-proof-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .demo-proof-copy {
    max-width: 720px;
  }

  .faq-section {
    gap: 36px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  .nav-shell,
  .section-shell,
  .proof-track,
  .footer-shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav-shell {
    min-height: 74px;
  }

  .wordmark {
    font-size: 1.1rem;
  }

  .mobile-nav {
    min-height: calc(100svh - 74px);
  }

  .hero {
    padding-block: 65px 84px;
  }

  .hero h1 {
    max-width: 10.5ch;
    margin-bottom: 24px;
    font-size: clamp(3.1rem, 15.5vw, 5.5rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .website-form {
    padding: 15px;
  }

  .form-heading {
    align-items: flex-start;
  }

  .form-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-row .button {
    width: 100%;
  }

  .hero-stage {
    margin-top: 18px;
  }

  .signal-card {
    border-radius: 28px;
  }

  .voice-core {
    min-height: 220px;
  }

  .floating-note {
    display: none;
  }

  .proof-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-track span,
  .proof-track span:first-child {
    min-height: 82px;
    border: 0;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .proof-track span:nth-child(even) {
    border-right: 0;
  }

  .proof-track span:nth-child(n + 3) {
    border-bottom: 0;
  }

  .proof-track strong {
    font-size: 1.12rem;
  }

  .content-section,
  .context-shell,
  .demo-proof-section {
    padding-block: 92px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .demo-proof-copy h2 {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
  }

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

  .capability-card {
    min-height: auto;
  }

  .card-index {
    margin-bottom: 62px;
  }

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

  .workflow-card {
    min-height: 360px;
  }

  .workflow-card h3 {
    margin-top: 62px;
  }

  .context-flow {
    padding: 30px 20px;
  }

  .guardrail-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .onboarding-step,
  .onboarding-step:not(:first-child) {
    min-height: auto;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-right: 0;
  }

  .onboarding-step:first-child {
    border-top: 0;
  }

  .step-number {
    margin-bottom: 44px;
  }

  .pilot-banner {
    grid-template-columns: 1fr;
  }

  .pilot-banner .button {
    width: 100%;
  }

  .demo-proof-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
  }

  .outcome-timeline li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .final-cta {
    width: min(calc(100% - 20px), var(--max));
    padding: 65px 21px;
    border-radius: 28px;
  }

  .final-cta h2 {
    font-size: clamp(2.45rem, 11.8vw, 4.2rem);
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .theme-toggle,
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .signal-card {
    padding: 22px 18px;
  }

  .signal-topline h2 {
    font-size: 1.7rem;
  }

  .voice-ring-two {
    width: 200px;
    height: 200px;
  }

  .action-path {
    justify-content: center;
  }

  .proof-track span {
    align-items: center;
    flex-direction: column;
    gap: 2px;
    padding-inline: 8px;
    line-height: 1.35;
  }

  .workflow-meta {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
