@font-face {
  font-family: "Space Grotesk";
  src: url("./fonts/space-grotesk-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("./fonts/ibm-plex-mono-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("./fonts/ibm-plex-mono-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --paper: #111314;
  --paper-strong: #17191a;
  --paper-raised: #1d2021;
  --ink: #f4f1e9;
  --ink-soft: #b8bab5;
  --ink-muted: #8f938f;
  --line: #313536;
  --line-strong: #4a4f50;
  --accent: #f27a52;
  --accent-hover: #ff916d;
  --accent-soft: rgba(242, 122, 82, 0.12);
  --success: #9bd8ae;
  --warning: #f1bd73;
  --terminal: #171717;
  --radius: 12px;
  --page: min(1240px, calc(100vw - 64px));
  --sans: "Space Grotesk", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
}

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

.site-header {
  position: relative;
  z-index: 10;
  width: var(--page);
  height: 72px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark-mark {
  display: inline-grid;
  width: 31px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}

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

.site-header nav a,
.header-cta,
footer a {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
}

.site-header nav a,
.header-cta {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--ink);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.header-cta:active,
.command-copy:active,
.closing-actions a:active {
  transform: translateY(1px);
}

.page-grid,
.page-section {
  width: var(--page);
  margin-inline: auto;
}

.hero {
  padding: clamp(70px, 8vw, 112px) 0 0;
}

.hero-mast {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(44px, 8vw, 118px);
  align-items: end;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 7.1vw, 98px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-lede {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.install-cta {
  max-width: 1080px;
  margin: clamp(54px, 7vw, 90px) auto 0;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(125deg, rgba(242, 122, 82, 0.13), transparent 42%),
    var(--paper-strong);
  text-align: center;
  box-shadow: 0 24px 70px rgba(6, 8, 8, 0.28);
}

.install-kicker {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 540;
  letter-spacing: -0.035em;
}

.command-copy {
  width: 100%;
  min-height: 88px;
  padding: 18px 20px 18px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid #555b5c;
  border-radius: 8px;
  background: #0d0f0f;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.command-copy code {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  color: #edeae2;
  font-family: var(--mono);
  font-size: clamp(14px, 1.55vw, 20px);
  line-height: 1.5;
}

.command-copy code span {
  color: var(--accent);
}

.copy-label {
  padding: 10px 12px;
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: var(--accent);
  color: #1b130f;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.command-copy:hover,
.command-copy:focus-visible {
  border-color: var(--accent);
  background: #131010;
}

.command-copy:hover .copy-label,
.command-copy:focus-visible .copy-label {
  background: var(--accent-hover);
}

.install-note {
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 11px;
}

.install-note a {
  margin-left: 8px;
  color: var(--ink);
  text-underline-offset: 4px;
}

.terminal-demo {
  padding-top: clamp(110px, 12vw, 170px);
}

.demo-intro {
  max-width: 720px;
  margin-bottom: 44px;
}

.demo-intro h2,
.section-intro h2,
.closing h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.1vw, 70px);
  font-weight: 480;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.demo-intro p,
.section-intro p,
.closing p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.terminal-window {
  width: 100%;
  overflow: hidden;
  border: 1px solid #525556;
  border-radius: var(--radius);
  background: var(--terminal);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.terminal-titlebar {
  min-height: 48px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #363839;
  background: #2a2a2a;
  color: #c7c7c7;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.traffic-lights {
  justify-self: start;
  display: flex;
  gap: 8px;
}

.traffic-lights i {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  background: #ff5f57;
}

.traffic-lights i:nth-child(2) {
  background: #febc2e;
}

.traffic-lights i:nth-child(3) {
  background: #28c840;
}

.terminal-screen {
  min-height: 650px;
  padding: clamp(24px, 4vw, 50px);
  background: rgba(12, 12, 12, 0.98);
  color: #e7e7e2;
  font-family: var(--mono);
  font-size: clamp(12px, 1.08vw, 15px);
  line-height: 1.7;
}

.terminal-session {
  margin: 0 0 28px;
  color: #9fa39f;
}

.scan-form {
  padding: 0 0 28px;
  border-bottom: 1px solid #303232;
}

.scan-form label {
  display: block;
  margin-bottom: 9px;
  color: #c7cac6;
  font-size: 12px;
}

.command-entry {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.7ch;
  color: #dcded9;
}

.shell-prompt,
.command-line > span,
.terminal-ready span {
  color: var(--success);
}

.command-entry input {
  width: clamp(180px, 28vw, 340px);
  min-width: 0;
  padding: 1px 4px;
  border: 0;
  border-bottom: 1px solid #696d6a;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  caret-color: var(--accent);
}

.command-entry input:focus {
  border-color: var(--accent);
  box-shadow: 0 2px 0 -1px var(--accent);
}

.command-flags {
  color: #aeb1ad;
}

.command-entry button {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field-help,
.field-error {
  margin: 10px 0 0;
  color: #a7aba7;
  font-size: 11px;
  line-height: 1.5;
}

.field-error {
  min-height: 17px;
  color: var(--warning);
}

.presets {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  color: #969a96;
  font-size: 11px;
}

.presets button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #5d615e;
  border-radius: 0;
  background: transparent;
  color: #c9ccc8;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
}

.presets button:hover,
.presets button:focus-visible,
.presets button[aria-pressed="true"] {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.terminal-output {
  padding-top: 28px;
}

.command-line {
  display: flex;
  gap: 1ch;
  margin-bottom: 24px;
  color: #e2e2dd;
}

.command-line code {
  overflow-wrap: anywhere;
  font-family: inherit;
}

.terminal-lines {
  display: grid;
  gap: 4px;
}

.terminal-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  color: #bec1bd;
}

.terminal-line .ok {
  color: var(--success);
}

.terminal-line .accent {
  color: var(--accent-hover);
}

.terminal-line .dim {
  color: #9da19d;
}

.terminal-findings {
  max-width: 880px;
  margin-top: 24px;
  padding: 17px 19px;
  display: grid;
  gap: 7px;
  border-left: 2px solid var(--accent);
  background: rgba(242, 122, 82, 0.07);
}

.finding {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 18px;
  color: #d9dbd6;
}

.finding-key {
  color: var(--accent-hover);
}

.finding-meta {
  color: #b9bdb8;
  text-align: right;
}

.finding-meta.high {
  color: var(--success);
}

.finding-meta.low {
  color: #a8aca8;
}

.inference-note {
  max-width: 920px;
  margin: 22px 0 0;
  color: #b5b8b4;
}

.inference-note > span:first-child {
  color: var(--accent-hover);
}

.terminal-ready {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.terminal-ready i,
.terminal-cursor::after {
  content: "";
  width: 8px;
  height: 1.15em;
  display: inline-block;
  background: #d7dad5;
  vertical-align: middle;
}

.terminal-cursor::after {
  margin-top: 9px;
}

@media (prefers-reduced-motion: no-preference) {
  .terminal-ready i,
  .terminal-cursor::after {
    animation: terminal-blink 1.05s step-end infinite;
  }
}

@keyframes terminal-blink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.proof-strip {
  width: var(--page);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.proof-strip > div {
  min-height: 108px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.proof-strip > div + div {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.proof-strip span {
  max-width: 190px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.page-section {
  padding: clamp(110px, 12vw, 160px) 0 0;
}

.section-intro {
  max-width: 800px;
  margin-bottom: 48px;
}

.workflow-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.workflow-steps li {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.workflow-steps li::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.workflow-steps .workflow-primary,
.workflow-steps .workflow-output {
  grid-column: 1 / -1;
  min-height: 310px;
}

.workflow-steps .workflow-primary {
  background:
    linear-gradient(115deg, rgba(242, 122, 82, 0.17), transparent 56%),
    var(--paper-strong);
}

.workflow-steps .workflow-output {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--paper-strong);
  background-size: 24px 24px;
}

.workflow-steps li > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.workflow-steps li > div {
  position: relative;
  z-index: 1;
  max-width: 570px;
}

.workflow-steps h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 480;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.workflow-steps p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.signal-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.signal-row {
  min-height: 76px;
  padding: 0 26px;
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(220px, 1fr) minmax(170px, 0.6fr);
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.signal-row:last-child {
  border-bottom: 0;
}

.signal-header {
  min-height: 49px;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-row code {
  color: var(--accent-hover);
  font-family: var(--mono);
  font-size: 12px;
}

.signal-row > span {
  color: #d7d7d1;
  font-size: 14px;
}

.confidence {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid #4c5051;
  border-radius: 4px;
  color: #b4b7b3;
  font-family: var(--mono);
  font-size: 10px;
}

.confidence.high {
  border-color: rgba(155, 216, 174, 0.42);
  color: var(--success);
}

.confidence.medium {
  border-color: rgba(241, 189, 115, 0.4);
  color: var(--warning);
}

.closing {
  margin-top: clamp(110px, 12vw, 160px);
  margin-bottom: 40px;
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  gap: 80px;
  align-items: end;
  border-radius: var(--radius);
  background: var(--accent);
  color: #1a120f;
}

.closing h2 {
  max-width: 760px;
  color: #1a120f;
}

.closing p {
  max-width: 620px;
  color: rgba(26, 18, 15, 0.8);
}

.closing-actions {
  display: grid;
  gap: 8px;
}

.closing-actions a {
  min-height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(26, 18, 15, 0.52);
  border-radius: 5px;
  color: #1a120f;
  font-family: var(--mono);
  font-size: 11px;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.closing-actions a::after {
  content: "↗";
}

.closing-actions a:hover,
.closing-actions a:focus-visible {
  background: #1a120f;
  color: var(--ink);
}

footer {
  width: var(--page);
  min-height: 100px;
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink-muted);
}

footer p {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
}

footer p:last-child {
  justify-self: end;
}

footer a:hover,
footer a:focus-visible {
  color: var(--ink);
}

.noscript {
  position: fixed;
  z-index: 50;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--warning);
  border-radius: 5px;
  background: var(--paper-strong);
  color: var(--warning);
  font-family: var(--mono);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 40px, 900px);
  }

  .hero-mast,
  .closing {
    grid-template-columns: 1fr;
  }

  .hero-mast {
    gap: 34px;
  }

  .hero h1 {
    max-width: 780px;
    font-size: clamp(56px, 10vw, 86px);
  }

  .hero-lede {
    max-width: 600px;
  }

  .install-cta {
    max-width: none;
  }

  .terminal-screen {
    min-height: 590px;
  }

  .closing {
    gap: 30px;
  }

  .closing-actions {
    max-width: 380px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100vw - 28px);
  }

  body {
    background-size: 32px 32px;
  }

  .site-header {
    height: 64px;
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.7vw, 70px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .install-cta {
    margin-top: 46px;
    padding: 22px 14px;
  }

  .command-copy {
    min-height: 0;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .command-copy code {
    font-size: 13px;
  }

  .copy-label {
    justify-self: center;
  }

  .install-note {
    line-height: 1.7;
  }

  .install-note a {
    display: block;
    margin-left: 0;
  }

  .terminal-demo {
    width: 100%;
    padding-top: 100px;
  }

  .demo-intro {
    width: var(--page);
    margin-inline: auto;
    margin-bottom: 32px;
  }

  .demo-intro h2,
  .section-intro h2,
  .closing h2 {
    font-size: clamp(38px, 11.8vw, 56px);
  }

  .terminal-window {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .terminal-titlebar {
    min-height: 44px;
    padding: 0 12px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    font-size: 12px;
  }

  .traffic-lights {
    gap: 6px;
  }

  .traffic-lights i {
    width: 11px;
    height: 11px;
  }

  .terminal-screen {
    min-height: 600px;
    padding: 24px 16px;
    font-size: 11px;
  }

  .command-entry {
    align-items: flex-start;
  }

  .command-entry input {
    width: calc(100% - 4px);
    margin: 5px 0 4px;
  }

  .command-flags {
    width: 100%;
    padding-left: 0;
  }

  .command-line {
    display: grid;
    gap: 4px;
  }

  .terminal-line {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .terminal-findings {
    padding: 15px;
  }

  .finding {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 7px 10px;
  }

  .finding-meta {
    grid-column: 2;
    text-align: left;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    min-height: 82px;
    padding: 18px;
  }

  .proof-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .page-section {
    padding-top: 104px;
  }

  .section-intro {
    margin-bottom: 34px;
  }

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

  .workflow-steps .workflow-primary,
  .workflow-steps .workflow-output {
    grid-column: auto;
  }

  .workflow-steps li,
  .workflow-steps .workflow-primary,
  .workflow-steps .workflow-output {
    min-height: 245px;
    padding: 22px;
  }

  .signal-table {
    border-radius: 6px;
  }

  .signal-header {
    display: none;
  }

  .signal-row {
    min-height: 0;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .closing {
    margin-top: 104px;
    margin-bottom: 24px;
    padding: 28px 22px;
  }

  footer {
    min-height: 140px;
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  footer > p:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
