:root {
  --ink: #07130f;
  --ink-soft: #0d1d17;
  --paper: #f4f1e8;
  --white: #ffffff;
  --green: #006847;
  --green-bright: #10b981;
  --red: #ce1126;
  --gold: #f1b93a;
  --muted: #a6b4ad;
  --line: rgba(255, 255, 255, 0.16);
  --display: "Montserrat", sans-serif;
  --body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition:
    min-height 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.site-header.scrolled {
  min-height: 68px;
  border-color: var(--line);
  background: rgba(7, 19, 15, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.brand span {
  color: var(--green-bright);
}

.brand strong {
  margin-top: 5px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 2.6rem);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(7, 19, 15, 0.5);
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
  background: var(--ink);
  clip-path: inset(0 0 100% 0);
}

.mobile-menu.is-open {
  display: flex;
}

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

.mobile-menu nav a {
  overflow: hidden;
  padding: 0.28rem 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 11vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
}

.mobile-menu p {
  position: absolute;
  bottom: 5vh;
  left: 8vw;
  color: var(--green-bright);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(920px, 92vh);
  overflow: hidden;
}

.hero-image,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.025);
}

.hero-scrim {
  background: rgba(3, 14, 10, 0.62);
}

.hero-grid {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(950px, 72vw);
  margin-left: 6vw;
  padding: 8rem 0 10rem;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--green-bright);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: signal-pulse 2s infinite;
}

@keyframes signal-pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7.7vw, 8rem);
  font-weight: 900;
  line-height: 0.93;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.48);
}

.hero-lede {
  max-width: 690px;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.65;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7);
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 0.75rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e01830;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(7, 19, 15, 0.38);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(7, 19, 15, 0.72);
}

.hero-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(680px, 58vw);
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(7, 19, 15, 0.88);
  backdrop-filter: blur(12px);
}

.hero-rail div {
  min-height: 120px;
  padding: 1.2rem 1.4rem;
  border-right: 1px solid var(--line);
}

.hero-rail dt {
  color: var(--red);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 900;
}

.hero-rail dd {
  margin: 1.2rem 0 0;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 6vw;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-scroll i {
  animation: scroll-nudge 1.6s ease-in-out infinite;
}

@keyframes scroll-nudge {
  50% {
    transform: translateY(5px);
  }
}

.section-shell {
  width: min(1320px, calc(100% - 10vw));
  margin: 0 auto;
}

.manifesto {
  padding: clamp(6rem, 11vw, 11rem) 0;
  background: var(--paper);
  color: var(--ink);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.6fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.section-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.9rem;
  border-top: 2px solid var(--red);
}

.section-marker span {
  color: var(--red);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
}

.section-marker strong {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.manifesto-copy h2,
.story-heading h2,
.model-heading h2,
.signal-copy h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.5vw, 6rem);
  font-weight: 900;
  line-height: 1;
}

.manifesto-copy > p:not(.eyebrow) {
  max-width: 860px;
  margin: 2rem 0 0;
  color: #31453c;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.story {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: #0a1712;
}

.story-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding-bottom: 4rem;
}

.story-heading .eyebrow,
.story-heading h2 {
  grid-column: 1;
}

.story-heading h2 {
  max-width: 970px;
}

.story-heading a {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--green-bright);
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-track {
  position: relative;
  border-top: 1px solid var(--line);
}

.story-track::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 33.333%;
  height: 3px;
  background: var(--red);
  content: "";
}

.story-step {
  display: grid;
  grid-template-columns: minmax(100px, 0.3fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(2.8rem, 5vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.story-year {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
}

.story-place {
  margin: 0 0 0.5rem;
  color: var(--green-bright);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
}

.story-step div > p:last-child {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.town-callout {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--green);
}

.town-word {
  position: absolute;
  top: 50%;
  left: -0.035em;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: clamp(8rem, 23vw, 24rem);
  font-weight: 900;
  line-height: 0.75;
  white-space: nowrap;
  transform: translateY(-50%);
}

.town-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 660px;
}

.town-content .eyebrow {
  color: var(--gold);
}

.town-content h2 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7.4rem);
  font-weight: 900;
  line-height: 0.95;
}

.town-content > p:last-child {
  max-width: 760px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.model {
  padding: clamp(6rem, 11vw, 11rem) 0;
  background: var(--paper);
  color: var(--ink);
}

.model-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 5vw;
}

.model-heading > p {
  margin: 0;
  color: #42544c;
  font-size: 1.05rem;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
  border-top: 1px solid rgba(7, 19, 15, 0.2);
  border-bottom: 1px solid rgba(7, 19, 15, 0.2);
}

.model-item {
  position: relative;
  min-height: 420px;
  padding: 2rem;
  border-right: 1px solid rgba(7, 19, 15, 0.2);
}

.model-item:last-child {
  border-right: 0;
}

.model-index {
  color: var(--red);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
}

.model-item > i {
  display: block;
  margin: 5rem 0 1.4rem;
  color: var(--green);
  font-size: 2rem;
}

.model-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
}

.model-item p {
  margin: 1rem 0 0;
  color: #4a5e55;
}

.delivery-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  padding: 1.4rem 0;
}

.delivery-line div {
  display: flex;
  flex-direction: column;
}

.delivery-line span {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
}

.delivery-line small {
  color: #627169;
}

.delivery-line > i {
  color: var(--red);
}

.signal {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: #050b08;
}

.signal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  min-width: 0;
  gap: clamp(3rem, 6vw, 7rem);
}

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

.signal-copy p:not(.eyebrow) {
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.signal-copy h2 {
  font-size: clamp(2.7rem, 3.35vw, 4.4rem);
}

.signal-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--line);
}

.signal-meta div {
  padding: 1.2rem;
  background: var(--ink-soft);
}

.signal-meta span,
.signal-meta strong {
  display: block;
}

.signal-meta span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-meta strong {
  margin-top: 0.3rem;
  font-family: var(--display);
  font-size: 0.85rem;
}

.terminal {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: #020504;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.46);
}

.terminal-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 52px;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d1511;
  color: #86968e;
  font-family: monospace;
  font-size: 0.76rem;
}

.terminal-lights {
  display: flex;
  gap: 7px;
}

.terminal-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.terminal-lights span:nth-child(2) {
  background: var(--gold);
}

.terminal-lights span:nth-child(3) {
  background: var(--green-bright);
}

.terminal-top button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  background: transparent;
  color: #b7c3bd;
  cursor: pointer;
}

.terminal-top button:hover,
.terminal-top button:focus-visible {
  border-color: var(--green-bright);
  color: var(--white);
}

.terminal-body {
  padding: clamp(1.2rem, 2.5vw, 2rem);
  overflow-x: auto;
  color: #dce7e1;
  font-family: "Courier New", monospace;
  font-size: clamp(0.67rem, 0.85vw, 0.83rem);
  line-height: 1.55;
}

.terminal-command {
  min-height: 1.6em;
  white-space: nowrap;
}

.terminal-prompt {
  margin-right: 0.7rem;
  color: var(--green-bright);
}

.terminal-cursor {
  display: inline-block;
  width: 0.55em;
  height: 1.05em;
  margin-left: 3px;
  background: #dce7e1;
  vertical-align: -0.15em;
  animation: cursor-blink 0.8s step-end infinite;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

#terminal-output {
  min-width: 650px;
  margin: 1rem 0 0;
  color: #c8d2cd;
  font: inherit;
  white-space: pre;
}

.terminal-line {
  display: block;
}

.terminal-line.is-frame {
  color: #ef3340;
  font-weight: 700;
}

.terminal-line.is-title {
  color: var(--white);
  font-weight: 700;
}

.terminal-line.is-value {
  color: #78a9ff;
}

.terminal-line.is-muted {
  color: #76857d;
}

.terminal-line.is-ok {
  color: var(--green-bright);
}

.closing {
  position: relative;
  padding: clamp(7rem, 12vw, 13rem) 0;
  overflow: hidden;
  background: var(--red);
}

.closing-rule {
  position: absolute;
  top: 0;
  right: 14%;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.closing-content {
  position: relative;
}

.closing .eyebrow {
  color: var(--ink);
}

.closing h2 {
  max-width: 1050px;
  font-size: clamp(3rem, 7vw, 7.5rem);
}

.closing-content > p:not(.eyebrow) {
  max-width: 700px;
  margin: 1.7rem 0 0;
  font-size: 1.2rem;
}

.closing .button-primary {
  background: var(--ink);
}

.closing .button-ghost {
  background: transparent;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 130px;
  padding: 2rem 4vw;
  border-top: 1px solid var(--line);
  background: #020504;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

footer .brand {
  color: var(--white);
}

footer p {
  margin: 0;
}

footer p:last-child {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-content {
    width: 88vw;
  }

  .hero-rail {
    width: 62vw;
  }

  .story-heading,
  .model-heading,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .story-heading a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .model-heading > p {
    max-width: 620px;
  }

  .signal-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  .hero {
    align-items: flex-end;
    min-height: 92vh;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-scrim {
    background: rgba(3, 14, 10, 0.68);
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 8rem 0 12.5rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.1rem);
  }

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

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

  .button {
    width: 100%;
  }

  .hero-rail {
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
  }

  .hero-rail div {
    min-height: 88px;
    padding: 0.9rem 0.65rem;
  }

  .hero-rail dd {
    margin-top: 0.6rem;
    font-size: 0.56rem;
  }

  .hero-scroll {
    display: none;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto-copy h2,
  .story-heading h2,
  .model-heading h2,
  .closing h2 {
    font-size: clamp(2.6rem, 12vw, 4.4rem);
  }

  .signal-copy h2 {
    font-size: clamp(2.35rem, 10.6vw, 3.4rem);
  }

  .story-step {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-year {
    font-size: 1.5rem;
  }

  .town-callout,
  .town-content {
    min-height: 620px;
  }

  .town-content h2 {
    font-size: clamp(3rem, 14vw, 5.5rem);
  }

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

  .model-item {
    min-height: auto;
    padding: 2rem 0 3rem;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 19, 15, 0.2);
  }

  .model-item:last-child {
    border-bottom: 0;
  }

  .model-item > i {
    margin-top: 3rem;
  }

  .delivery-line {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .delivery-line > i {
    transform: rotate(90deg);
  }

  .terminal {
    min-height: 590px;
  }

  .terminal-top {
    grid-template-columns: auto 1fr auto;
    gap: 0.7rem;
  }

  .terminal-top > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .terminal-top button span {
    display: none;
  }

  .closing-rule {
    right: 20px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding: 2.5rem 20px;
  }

  footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero-content {
    padding-bottom: 11rem;
  }

  .hero-actions {
    display: none;
  }

  .hero-rail {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .hero-rail div {
    min-width: 0;
  }

  .hero-rail dd {
    overflow-wrap: anywhere;
  }
}

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