@font-face {
  font-family: "Public Sans";
  src: url("/assets/fonts/public-sans-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  color-scheme: dark;
  --black: #090908;
  --ink: #171714;
  --carbon: #20201d;
  --bone: #ece7dc;
  --bone-muted: #c5beb0;
  --silver: #b7b8b4;
  --amber: #d98a24;
  --copper: #b85132;
  --line-dark: rgba(236, 231, 220, 0.22);
  --line-light: rgba(23, 23, 20, 0.24);
  --sans: "Public Sans", Arial, sans-serif;
  --serif: "Bodoni 72", Didot, "Iowan Old Style", Baskerville, "Times New Roman", serif;
  background: var(--black);
  color: var(--bone);
  font-family: var(--sans);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--bone);
}

body,
button {
  font-family: var(--sans);
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--bone);
  color: var(--black);
  transform: translateY(-150%);
}

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

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  border-bottom: 1px solid transparent;
  color: var(--bone);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.masthead.is-scrolled {
  border-color: var(--line-dark);
  background: rgba(9, 9, 8, 0.94);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
}

.wordmark__slash {
  color: var(--amber);
  font-weight: 400;
}

.masthead__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.masthead__nav a {
  text-decoration: none;
}

.masthead__nav a:not(.masthead__release):hover,
.masthead__nav a:not(.masthead__release):focus-visible {
  color: var(--amber);
}

.masthead__release {
  min-width: 92px;
  padding: 11px 14px;
  border: 1px solid rgba(236, 231, 220, 0.55);
  text-align: center;
}

.masthead__release:hover,
.masthead__release:focus-visible {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--black);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  height: 92vh;
  height: 92svh;
  min-height: 650px;
  overflow: hidden;
  grid-template-rows: 1fr auto;
  align-items: end;
  padding: 126px 5.4vw 38px;
  background: var(--black);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  content: "";
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-arrival 1.2s ease-out both;
}

.hero__content {
  align-self: center;
  width: min(680px, 52vw);
  padding-bottom: 36px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7);
}

.eyebrow {
  margin: 0;
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--copper);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.hero h1 {
  margin: 18px 0 0;
  max-width: 8ch;
  color: #f4f0e8;
  font-size: 7.4rem;
  line-height: 0.79;
}

.hero h1 span {
  color: var(--amber);
}

.hero__claim {
  margin: 28px 0 0;
  color: rgba(244, 240, 232, 0.88);
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero__manifest {
  display: grid;
  width: min(100%, 820px);
  margin: 0 0 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(236, 231, 220, 0.4);
}

.hero__manifest div {
  padding: 15px 18px 0;
  border-left: 1px solid rgba(236, 231, 220, 0.28);
}

.hero__manifest div:first-child {
  border-left: 0;
}

.hero__manifest dt,
.system-telemetry dt,
.system-copy__specs dt,
.volatile__readout dt,
.release__specs dt {
  color: var(--bone-muted);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__manifest dd {
  margin: 5px 0 0;
  font-size: 0.76rem;
  line-height: 1.4;
}

.orbit-strip {
  display: grid;
  min-height: 78px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  background: var(--bone);
  color: var(--ink);
}

.orbit-strip span {
  padding: 0 28px;
  border-left: 1px solid var(--line-light);
  font-size: 0.68rem;
  font-weight: 720;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.orbit-strip span:first-child {
  border-left: 0;
}

.section-pad {
  padding: 118px 5.4vw;
}

.section-index {
  color: rgba(23, 23, 20, 0.52);
  font-size: 0.62rem;
  font-weight: 650;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-index--light {
  color: rgba(236, 231, 220, 0.48);
}

.premise {
  display: grid;
  grid-template-columns: 1fr 4.2fr 3fr;
  gap: 4vw;
  background: var(--bone);
  color: var(--ink);
}

.premise__statement h2 {
  margin: 18px 0 0;
  max-width: 10ch;
  font-size: 4.7rem;
  line-height: 0.96;
}

.premise__copy {
  align-self: end;
  max-width: 580px;
}

.premise__copy p {
  margin: 22px 0 0;
  color: rgba(23, 23, 20, 0.72);
  font-size: 0.95rem;
  line-height: 1.75;
}

.premise__copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1.42;
}

.method {
  background: var(--black);
  color: var(--bone);
}

.method__header {
  display: grid;
  grid-template-columns: 1fr 2.1fr 3fr;
  gap: 4vw;
  align-items: start;
}

.method__header h2 {
  margin: -8px 0 0;
  font-size: 5.2rem;
  line-height: 0.9;
}

.system-tabs {
  display: grid;
  margin-top: 94px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.system-tab {
  min-height: 78px;
  padding: 16px 20px;
  border: 0;
  border-left: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  color: rgba(236, 231, 220, 0.58);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
}

.system-tab:first-child {
  border-left: 0;
}

.system-tab span {
  display: block;
  margin-bottom: 9px;
  color: rgba(236, 231, 220, 0.34);
  font-size: 0.56rem;
}

.system-tab:hover,
.system-tab:focus-visible,
.system-tab.is-active {
  background: var(--bone);
  color: var(--black);
  outline: 0;
}

.system-tab.is-active span {
  color: var(--copper);
}

.system-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
  border-bottom: 1px solid var(--line-dark);
}

.system-visual {
  min-width: 0;
  padding: 48px 5vw 44px 0;
  border-right: 1px solid var(--line-dark);
}

.system-visual svg {
  width: min(100%, 680px);
  margin: 0 auto;
  overflow: visible;
}

.diagram__orbit,
.diagram__body,
.diagram__body-inner,
.diagram__core {
  fill: none;
}

.diagram__orbit {
  stroke: rgba(183, 184, 180, 0.3);
  stroke-dasharray: 2 9;
  stroke-width: 1;
}

.diagram__body {
  stroke: rgba(236, 231, 220, 0.72);
  stroke-width: 2;
}

.diagram__body-inner {
  stroke: rgba(236, 231, 220, 0.2);
  stroke-width: 1;
}

.diagram-layer {
  opacity: 0.2;
  transition: opacity 240ms ease;
}

.system-stage[data-active-phase="distill"] .diagram-layer--distill,
.system-stage[data-active-phase="separate"] .diagram-layer--separate,
.system-stage[data-active-phase="mature"] .diagram-layer--mature,
.system-stage[data-active-phase="recover"] .diagram-layer--recover {
  opacity: 1;
}

.diagram__oak {
  fill: rgba(217, 138, 36, 0.3);
  stroke: var(--amber);
  stroke-width: 2;
}

.diagram__spirit {
  fill: none;
  stroke: var(--amber);
  stroke-dasharray: 9 6;
  stroke-width: 5;
  transform-box: fill-box;
  transform-origin: center;
  animation: slow-rotation 24s linear infinite;
}

.diagram__core {
  stroke: var(--copper);
  stroke-width: 3;
}

.diagram__wick,
.diagram__vapor,
.diagram__separator,
.diagram__loop,
.diagram__coil {
  fill: none;
  stroke-linecap: square;
}

.diagram__wick {
  stroke: var(--amber);
  stroke-width: 7;
}

.diagram__vapor {
  stroke: var(--bone);
  stroke-dasharray: 4 8;
  stroke-width: 2;
}

.diagram__separator {
  stroke: var(--silver);
  stroke-width: 8;
}

.diagram__sample {
  fill: var(--bone);
}

.diagram__loop {
  stroke: var(--copper);
  stroke-width: 3;
}

.diagram__trap {
  fill: rgba(184, 81, 50, 0.14);
  stroke: var(--copper);
  stroke-width: 2;
}

.diagram__coil {
  stroke: var(--bone);
  stroke-width: 2;
}

.diagram__oxygen {
  fill: var(--amber);
}

.diagram__datum {
  stroke: rgba(236, 231, 220, 0.32);
  stroke-width: 1;
}

.diagram__label {
  fill: rgba(236, 231, 220, 0.46);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 650;
}

.diagram__label--end {
  text-anchor: end;
}

.system-telemetry {
  display: grid;
  margin: 34px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.system-telemetry div {
  padding: 18px 16px 0;
  border-left: 1px solid var(--line-dark);
}

.system-telemetry div:first-child {
  border-left: 0;
  padding-left: 0;
}

.system-telemetry dd {
  margin: 5px 0 0;
  font-size: 0.76rem;
}

.system-copy {
  align-self: center;
  padding: 54px 0 54px 5vw;
}

.system-copy h3 {
  margin: 18px 0 0;
  max-width: 9ch;
  font-size: 3.6rem;
  line-height: 0.98;
}

.system-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  max-width: 460px;
  color: rgba(236, 231, 220, 0.68);
  font-size: 0.92rem;
  line-height: 1.72;
}

.system-copy__specs {
  margin: 38px 0 0;
  border-top: 1px solid var(--line-dark);
}

.system-copy__specs div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}

.system-copy__specs dd {
  margin: 0;
  font-size: 0.75rem;
}

.volatile {
  display: grid;
  grid-template-columns: 1fr 4.2fr 3fr;
  gap: 4vw;
  background: var(--copper);
  color: var(--ink);
}

.volatile .section-index,
.volatile .eyebrow {
  color: rgba(23, 23, 20, 0.62);
}

.volatile__headline h2 {
  margin: 18px 0 0;
  max-width: 10ch;
  font-size: 4.8rem;
  line-height: 0.94;
}

.volatile__copy {
  max-width: 570px;
}

.volatile__copy p {
  margin: 0 0 22px;
  font-size: 0.94rem;
  line-height: 1.72;
}

.volatile__copy p:first-child {
  font-family: var(--serif);
  font-size: 1.36rem;
  line-height: 1.4;
}

.volatile__readout {
  display: grid;
  grid-column: 2 / 4;
  margin: 58px 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 23, 20, 0.42);
}

.volatile__readout div {
  padding: 18px 16px 0;
  border-left: 1px solid rgba(23, 23, 20, 0.32);
}

.volatile__readout div:first-child {
  border-left: 0;
  padding-left: 0;
}

.volatile__readout dt {
  color: rgba(23, 23, 20, 0.62);
}

.volatile__readout dd {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.release {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  background: var(--black);
}

.release__media {
  min-height: 720px;
  overflow: hidden;
}

.release__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.release__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.release__content > .eyebrow {
  margin-top: 70px;
}

.release__content h2 {
  margin: 14px 0 0;
  font-size: 6rem;
  line-height: 0.88;
}

.release__class {
  margin: 22px 0 0;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.5;
  text-transform: uppercase;
}

.release__description {
  margin: 26px 0 0;
  max-width: 560px;
  color: rgba(236, 231, 220, 0.7);
  font-size: 0.94rem;
  line-height: 1.74;
}

.release__specs {
  margin: 42px 0 0;
  border-top: 1px solid var(--line-dark);
}

.release__specs div {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}

.release__specs dd {
  margin: 0;
  color: rgba(236, 231, 220, 0.88);
  font-size: 0.76rem;
  line-height: 1.5;
}

.allocation {
  display: grid;
  margin-top: 46px;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 8px 24px;
}

.allocation span {
  color: var(--bone-muted);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.allocation strong {
  color: var(--bone);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.allocation small {
  grid-column: 1 / -1;
  color: rgba(236, 231, 220, 0.44);
  font-size: 0.64rem;
  line-height: 1.5;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  align-items: end;
  padding: 62px 5.4vw;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}

.footer__brand p,
.footer__legal {
  margin: 14px 0 0;
  color: rgba(236, 231, 220, 0.44);
  font-size: 0.64rem;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.65rem;
}

.footer__links a {
  color: rgba(236, 231, 220, 0.64);
  text-underline-offset: 3px;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--amber);
}

.footer__legal {
  margin: 0;
  text-align: right;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes hero-arrival {
  from {
    opacity: 0;
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slow-rotation {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 6rem;
  }

  .premise,
  .volatile {
    grid-template-columns: 0.7fr 3fr 2.4fr;
  }

  .premise__statement h2,
  .volatile__headline h2 {
    font-size: 3.9rem;
  }

  .method__header h2 {
    font-size: 4.3rem;
  }

  .system-stage {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
  }

  .system-copy h3 {
    font-size: 3rem;
  }

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

  .release__content h2 {
    font-size: 5rem;
  }
}

@media (max-width: 820px) {
  .masthead {
    min-height: 66px;
    padding-inline: 24px;
  }

  .masthead__nav {
    gap: 18px;
  }

  .masthead__nav > a:not(.masthead__release) {
    display: none;
  }

  .hero {
    height: 90vh;
    height: 90svh;
    min-height: 580px;
    padding: 105px 24px 26px;
  }

  .hero__content {
    width: min(600px, 78vw);
  }

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

  .hero__manifest {
    width: 100%;
  }

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

  .orbit-strip span {
    min-height: 54px;
    padding: 17px 16px;
    border-bottom: 1px solid var(--line-light);
  }

  .orbit-strip span:nth-child(odd) {
    border-left: 0;
  }

  .section-pad {
    padding: 88px 32px;
  }

  .premise,
  .volatile {
    grid-template-columns: 1fr 4fr;
    gap: 46px 28px;
  }

  .premise__statement,
  .volatile__headline {
    grid-column: 2;
  }

  .premise__copy,
  .volatile__copy {
    grid-column: 2;
  }

  .premise__statement h2,
  .volatile__headline h2 {
    font-size: 4.2rem;
  }

  .method__header {
    grid-template-columns: 1fr 3fr;
  }

  .method__header .eyebrow {
    grid-column: 2;
  }

  .method__header h2 {
    grid-column: 2;
    font-size: 4.4rem;
  }

  .system-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 68px;
  }

  .system-tab:nth-child(odd) {
    border-left: 0;
  }

  .system-tab:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .system-stage {
    grid-template-columns: 1fr;
  }

  .system-visual {
    padding: 42px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .system-copy {
    padding: 52px 0;
  }

  .system-copy h3 {
    max-width: 12ch;
    font-size: 3.5rem;
  }

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

  .volatile__readout div:nth-child(odd) {
    border-left: 0;
  }

  .volatile__readout div:nth-child(-n + 2) {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(23, 23, 20, 0.32);
  }

  .release {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .release__media {
    height: 82vh;
    min-height: 640px;
  }

  .release__content > .eyebrow {
    margin-top: 58px;
  }

  .release__content h2 {
    font-size: 5.6rem;
  }

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

  .footer__legal {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .masthead {
    padding-inline: 20px;
  }

  .masthead__release {
    min-width: 82px;
    padding-inline: 10px;
  }

  .hero {
    height: 90vh;
    height: 90svh;
    min-height: 0;
    padding-inline: 20px;
  }

  .hero__media::after {
    background: rgba(0, 0, 0, 0.24);
  }

  .hero__media img {
    object-position: center 68%;
  }

  .hero__content {
    align-self: start;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: 4.2rem;
  }

  .hero__claim {
    margin-top: 20px;
    font-size: 0.9rem;
  }

  .hero__manifest div {
    padding: 12px 8px 0;
  }

  .hero__manifest div:first-child {
    padding-left: 0;
  }

  .hero__manifest dt {
    font-size: 0.5rem;
  }

  .hero__manifest dd {
    font-size: 0.64rem;
  }

  .orbit-strip span {
    font-size: 0.59rem;
  }

  .section-pad {
    padding: 74px 20px;
  }

  .premise,
  .volatile {
    display: block;
  }

  .premise__statement,
  .volatile__headline {
    margin-top: 42px;
  }

  .premise__statement h2,
  .volatile__headline h2 {
    font-size: 3.35rem;
  }

  .premise__copy,
  .volatile__copy {
    margin-top: 42px;
  }

  .premise__copy .lead,
  .volatile__copy p:first-child {
    font-size: 1.25rem;
  }

  .method__header {
    display: block;
  }

  .method__header .eyebrow {
    margin-top: 42px;
  }

  .method__header h2 {
    margin-top: 14px;
    font-size: 3.7rem;
  }

  .system-tabs {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .system-tab,
  .system-tab:nth-child(odd) {
    min-height: 62px;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .system-tab:last-child {
    border-bottom: 0;
  }

  .system-visual {
    padding-top: 24px;
  }

  .system-telemetry div {
    padding-inline: 8px;
  }

  .system-telemetry div:first-child {
    padding-left: 0;
  }

  .system-telemetry dt {
    font-size: 0.48rem;
  }

  .system-telemetry dd {
    font-size: 0.62rem;
  }

  .system-copy h3 {
    font-size: 3rem;
  }

  .volatile__readout {
    margin-top: 48px;
  }

  .volatile__readout dd {
    font-size: 1.18rem;
  }

  .release__media {
    height: 72vh;
    min-height: 560px;
  }

  .release__content h2 {
    font-size: 4.5rem;
  }

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

  .allocation strong {
    font-size: 1.8rem;
  }

  .allocation small {
    grid-column: 1;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }

  .footer__legal {
    grid-column: 1;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .masthead {
    min-height: 54px;
  }

  .hero {
    height: 90vh;
    height: 90svh;
    min-height: 0;
    padding: 66px 28px 14px;
  }

  .hero__content {
    align-self: center;
    padding: 0;
  }

  .hero h1 {
    margin-top: 8px;
    font-size: 3.7rem;
  }

  .hero__claim {
    margin-top: 12px;
    font-size: 0.78rem;
  }

  .hero__manifest {
    width: min(68%, 620px);
  }

  .hero__manifest div {
    padding-top: 8px;
  }

  .hero__manifest dt {
    font-size: 0.46rem;
  }

  .hero__manifest dd {
    font-size: 0.58rem;
  }
}

@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 .reveal {
    opacity: 1;
    transform: none;
  }
}
