:root {
  color-scheme: light;
  --ink: #13203a;
  --ink-soft: #2c3850;
  --muted: #667087;
  --paper: #fffdf8;
  --paper-deep: #f4f1e8;
  --white: #fff;
  --line: #dcded8;
  --navy: #101c35;
  --navy-soft: #172846;
  --blue: #5d8dff;
  --blue-light: #dce7ff;
  --green: #18a878;
  --green-dark: #0b7654;
  --green-light: #daf4e9;
  --red: #e05a52;
  --red-light: #fde4df;
  --amber: #eaa746;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  --content: 1120px;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(12, 26, 50, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, video, svg { display: block; max-width: 100%; }
p, h1, h2, h3, figure { margin-top: 0; }
::selection { background: var(--green-light); }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 64px;
  padding: 0 max(22px, calc((100% - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #eef4ff;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(12, 24, 45, .82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .01em;
}

.brand svg { width: 29px; height: 33px; }

.navlinks {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  color: rgba(238, 244, 255, .7);
  font-size: 14px;
  font-weight: 600;
}

.navlinks a {
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .18s ease, background .18s ease;
}

.navlinks a:hover,
.navlinks a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  color: #f4f7ff;
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(145deg, #0c192f 0%, #132544 55%, #10223e 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(transparent, rgba(8, 19, 36, .42));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .42;
  pointer-events: none;
}

.hero-glow-one {
  width: 620px;
  height: 620px;
  top: -240px;
  right: -130px;
  background: radial-gradient(circle, rgba(86, 134, 255, .32), transparent 68%);
}

.hero-glow-two {
  width: 520px;
  height: 520px;
  top: 370px;
  left: -250px;
  background: radial-gradient(circle, rgba(31, 187, 136, .24), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 92px;
  text-align: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 26px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b7c9ee;
  border: 1px solid rgba(183, 201, 238, .23);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(24, 168, 120, .12);
}

h1 {
  max-width: 1060px;
  margin: 0 auto 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 6.1vw, 75px);
  font-weight: 500;
  letter-spacing: -.028em;
  line-height: 1.01;
}

h1 span {
  color: #71e2bb;
}

.dek {
  margin-bottom: 28px;
  color: rgba(235, 242, 255, .76);
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 30px);
}

.dek em,
h2 em {
  color: var(--green-dark);
  font-style: normal;
}

.dek em { color: #71e2bb; }

.authors {
  margin-bottom: 4px;
  color: #f3f6ff;
  font-size: 17px;
  font-weight: 600;
}

.authors a { color: #94b6ff; }
.authors a:hover { text-decoration: underline; text-underline-offset: 3px; }
.authors span { margin: 0 6px; color: rgba(255,255,255,.3); }

.authors sup,
.author-note sup {
  color: #71e2bb;
  font-size: .72em;
}

.author-note {
  margin-bottom: 2px;
  color: rgba(235, 242, 255, .56);
  font-size: 12px;
}

.affiliation {
  margin-bottom: 30px;
  color: rgba(235, 242, 255, .62);
  font-size: 15px;
}

.button-row {
  margin-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.pill {
  min-height: 44px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #eef4ff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .12);
}

.pill.primary {
  color: #0d2b22;
  border-color: #71e2bb;
  background: #71e2bb;
}

.pill > svg { width: 17px; fill: currentColor; }

.button-icon {
  min-width: 21px;
  height: 21px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, .13);
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
}

.primary .button-icon { background: rgba(13, 43, 34, .09); }
.button-icon.mono { font-family: var(--mono); font-size: 10px; }

.hero-paper-figure {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 18px 18px 12px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .34), 0 0 0 7px rgba(255,255,255,.025);
}

.overview-video-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: var(--navy);
}

.overview-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  padding: 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(7, 16, 31, .72);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.video-toggle svg { width: 100%; fill: currentColor; }
.video-toggle .play-icon { display: none; }
.video-toggle.is-paused .play-icon { display: block; }
.video-toggle.is-paused .pause-icon { display: none; }

.hero-paper-figure figcaption {
  margin: 12px 5px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

.hero-paper-figure figcaption a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-stats {
  width: min(100%, 1040px);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}

.hero-stats article {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
}

.hero-stats p { margin: 0; }
.hero-stats .stat-label {
  margin-bottom: 7px;
  color: rgba(226, 235, 251, .55);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #71e2bb;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1;
}

.old-number {
  color: rgba(255,255,255,.42);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.stat-arrow { margin: 0 9px; color: rgba(255,255,255,.42); }

.hero-stats article > p:last-child {
  color: rgba(226, 235, 251, .67);
  font-size: 13px;
}

.abstract {
  max-width: 950px;
  margin: 54px auto 0;
  text-align: left;
}

.abstract .kicker {
  margin-bottom: 8px;
  color: #71e2bb;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.abstract > p:last-child {
  margin-bottom: 0;
  color: rgba(241, 246, 255, .86);
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 33px);
  line-height: 1.35;
}

mark {
  color: inherit;
  background: linear-gradient(transparent 58%, rgba(113, 226, 187, .25) 58%);
}

main { overflow: hidden; }

.section {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0;
  scroll-margin-top: 58px;
}

.section.band { position: relative; }

.section.band::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.section-heading { max-width: 950px; margin-bottom: 34px; }
.section-heading.compact { margin-bottom: 26px; }

.section-number {
  margin-bottom: 11px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.04;
}

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

.lead {
  max-width: 920px;
  margin-bottom: 42px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 28px);
  line-height: 1.45;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  color: var(--ink-soft);
}

.split-copy p { margin-bottom: 42px; }

.paper-figure {
  margin: 22px 0 44px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 44px rgba(21, 32, 57, .07);
}

.paper-figure img { width: 100%; border-radius: 10px; }

.paper-figure figcaption {
  margin: 13px 8px 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.motivation-figure { max-width: 850px; margin-inline: auto; }
.tradeoff-figure { max-width: 680px; margin-inline: auto; }

.takeaway {
  margin-top: 58px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 32px;
  border-left: 4px solid var(--red);
  background: var(--red-light);
}

.takeaway span {
  color: #a63c36;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.takeaway p {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.35;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.method-steps article {
  position: relative;
  padding: 28px 25px 23px;
  border: 1px solid #d5d8d0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .7);
}

.method-steps article > span {
  width: 28px;
  height: 28px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background: var(--green-dark);
  font-family: var(--mono);
  font-size: 12px;
}

.method-steps article:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 26px;
  right: -14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-deep);
  font-size: 14px;
}

.method-steps h3 { margin-bottom: 7px; }
.method-steps p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.formula-card {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: 36px;
  align-items: center;
  color: #edf3ff;
  border-radius: var(--radius);
  background: var(--navy);
}

.formula-card p { margin-bottom: 0; }
.formula-card > p { color: #aebbd2; font-size: 14px; }

.formula-label {
  margin-bottom: 11px !important;
  color: #71e2bb;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.formula {
  overflow-x: auto;
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  white-space: nowrap;
}

.method-note {
  margin-top: 18px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: start;
  border: 1px solid #d5d8d0;
  border-radius: 13px;
  background: rgba(255, 255, 255, .72);
}

.method-note strong { color: var(--green-dark); }
.method-note p { margin: 0; color: var(--ink-soft); }

.result-spotlight {
  margin: 48px 0 42px;
  padding: 34px 48px;
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  gap: 35px;
  color: #eff4ff;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.result-spotlight p,
.result-spotlight span { margin: 0; color: #9eabc1; font-size: 13px; }

.result-spotlight strong {
  display: block;
  margin: 2px 0 4px;
  color: #ff9891;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 600;
  line-height: 1;
}

.result-spotlight .secure-result { text-align: right; }
.result-spotlight .secure-result strong { color: #71e2bb; }

.result-spotlight svg path {
  fill: none;
  stroke: #5e6e89;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.table-wrap {
  margin: 34px 0 50px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(21, 32, 57, .05);
}

table {
  width: 100%;
  min-width: 750px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.utility-table table { min-width: 1040px; }

caption {
  padding: 17px 22px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}

th, td { padding: 17px 20px; border-bottom: 1px solid #e8e9e4; text-align: right; }
thead th { color: var(--muted); background: #f7f7f3; font-size: 12px; font-weight: 600; }
th:first-child { text-align: left; }
tbody th { font-weight: 600; }
tbody td { color: var(--ink-soft); }
tbody tr:last-child th,
tbody tr:last-child td { border-bottom: 0; }

.ours-row { background: var(--green-light); }
.ours-row th, .ours-row td { color: #075b42; font-weight: 700; }
.ours-row th span {
  margin-left: 5px;
  padding: 3px 7px;
  color: #fff;
  border-radius: 999px;
  background: var(--green-dark);
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

td.risk { color: #b43e38; font-weight: 700; }
td.best-muted { color: var(--green-dark); font-weight: 700; }

.result-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.result-notes article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.result-notes h3 { margin: 18px 0 7px; }
.result-notes p { margin: 0; color: var(--muted); font-size: 14px; }

.dot { width: 10px; height: 10px; display: block; border-radius: 50%; }
.dot.green { background: var(--green); box-shadow: 0 0 0 5px var(--green-light); }
.dot.blue { background: var(--blue); box-shadow: 0 0 0 5px var(--blue-light); }
.dot.amber { background: var(--amber); box-shadow: 0 0 0 5px #f9ecd5; }

.case-prompt {
  margin-bottom: 20px;
  padding: 25px 28px;
  border: 1px solid #cfd2cd;
  border-radius: 14px;
  background: #fff;
}

.case-prompt p { margin-bottom: 13px; }
.case-prompt p:last-child { margin-bottom: 0; }
.case-prompt strong { margin-right: 8px; color: var(--green-dark); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.case-grid article {
  padding: 25px;
  border: 1px solid #e3bd73;
  border-radius: 14px;
  background: #fff8e8;
}

.case-grid article:nth-child(2) {
  border-color: #e1a5a0;
  background: #fff0ed;
}

.case-grid article.case-secure {
  border-color: #82bd91;
  background: #eef9ef;
}

.case-grid h3 { margin-bottom: 14px; }
.case-grid p { color: var(--ink-soft); font-size: 14px; }
.injection { color: #bf322d !important; }
.secure-label { color: #18733c !important; font-weight: 700; }

.limitations { padding-bottom: 90px; }

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.scope-grid article {
  padding: 26px 29px;
  border-top: 3px solid var(--blue);
  background: var(--blue-light);
}

.scope-grid article:last-child { border-top-color: var(--amber); background: #fbf0df; }
.scope-grid h3 { margin-bottom: 9px; }
.scope-grid p { margin-bottom: 0; color: var(--ink-soft); font-size: 15px; }

.citation-section {
  width: min(920px, calc(100% - 40px));
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.codebox {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.codebox pre {
  margin: 0;
  padding: 28px 96px 28px 28px;
  overflow-x: auto;
  color: #dce5f7;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
}

.copy-button {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  padding: 7px 11px;
  color: #dce5f7;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 7px;
  background: rgba(255,255,255,.08);
  font: 11px var(--mono);
  cursor: pointer;
}

footer {
  padding: 45px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #9ba8bd;
  background: var(--navy);
  text-align: center;
}

.footer-brand { margin-bottom: 13px; color: #f0f5ff; }
footer p { margin: 2px 0; font-size: 12px; }
.template-credit { color: #75839b; }
.template-credit a { text-decoration: underline; text-underline-offset: 2px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
}

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

@media (max-width: 850px) {
  .navlinks { max-width: 72vw; overflow-x: auto; scrollbar-width: none; }
  .navlinks::-webkit-scrollbar { display: none; }
  .hero-inner { padding-top: 65px; }
  .hero-stats,
  .method-steps,
  .result-notes,
  .case-grid { grid-template-columns: 1fr; }
  .hero-stats article { text-align: center; }
  .method-steps article:not(:last-child)::after { content: "↓"; top: auto; right: 24px; bottom: -14px; }
  .formula-card { grid-template-columns: 1fr; gap: 18px; }
  .method-note { grid-template-columns: 1fr; gap: 7px; }
  .result-spotlight { grid-template-columns: 1fr 100px 1fr; gap: 18px; padding-inline: 28px; }
  .result-spotlight svg { width: 100px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .topbar { min-height: 58px; }
  .brand { font-size: 19px; }
  .brand svg { width: 25px; }
  .navlinks { flex: 1; max-width: calc(100vw - 145px); font-size: 12px; }
  .navlinks a { padding-inline: 8px; }
  .navlinks a:nth-child(4) { display: none; }
  .hero { padding-top: 58px; }
  .hero-inner { width: min(100% - 28px, var(--content)); padding: 52px 0 68px; }
  .eyebrow { font-size: 9px; }
  h1 { font-size: clamp(38px, 12vw, 56px); }
  .authors span { margin-inline: 2px; }
  .button-row { gap: 8px; }
  .pill { padding-inline: 14px; }
  .hero-paper-figure { padding: 8px 8px 10px; border-radius: 12px; }
  .overview-video-wrap { border-radius: 8px; }
  .video-toggle { right: 8px; bottom: 8px; width: 35px; height: 35px; padding: 9px; }
  .hero-stats { grid-template-columns: 1fr; }
  .abstract { margin-top: 42px; }
  .section { width: min(100% - 28px, var(--content)); padding: 74px 0; }
  .split-copy,
  .scope-grid { grid-template-columns: 1fr; gap: 8px; }
  .split-copy p { margin-bottom: 18px; }
  .paper-figure { padding: 8px; border-radius: 12px; }
  .takeaway { grid-template-columns: 1fr; gap: 8px; padding: 23px; }
  .takeaway p { font-size: 21px; }
  .result-spotlight { grid-template-columns: 1fr; text-align: center; }
  .result-spotlight svg { width: 100px; margin: 0 auto; transform: rotate(90deg); }
  .result-spotlight .secure-result { text-align: center; }
  .formula-card { padding: 24px 20px; }
  .codebox pre { padding: 65px 20px 24px; font-size: 10px; }
}

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