:root {
  --ink: #0a1714;
  --muted: #5e6b67;
  --paper: #f6f4ed;
  --white: #fff;
  --mint: #92e8bf;
  --mint-bright: #bdffd9;
  --green: #0b7250;
  --deep: #07110f;
  --line: rgba(10, 23, 20, 0.12);
  --radius: 28px;
  --shadow: 0 28px 80px rgba(11, 43, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  font-weight: 730;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 7px 16px rgba(22, 84, 63, 0.17);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

.site-header nav a:not(.nav-cta) {
  color: #40504b;
  transition: color 160ms ease;
}

.site-header nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-2px);
}

.menu-button,
.site-header .mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 710px;
  margin: 0 auto;
  padding: 50px 0 88px;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -220px;
  right: -380px;
  width: 850px;
  height: 850px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146, 232, 191, 0.38), transparent 66%);
  filter: blur(5px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 23px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(66px, 7vw, 104px);
  font-weight: 650;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

h1 em,
h2 em {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-text {
  max-width: 550px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 188px;
  padding: 11px 20px;
  border-radius: 13px;
  font-weight: 650;
}

.button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.button span {
  display: flex;
  flex-direction: column;
  font-size: 19px;
  line-height: 1.03;
}

.button small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(5, 21, 16, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.button-primary:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  font-size: 18px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: #6b7773;
  font-size: 12px;
  font-weight: 650;
}

.trust-row span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--green);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phone {
  position: relative;
  z-index: 3;
  width: 316px;
  height: 642px;
  padding: 8px;
  border: 2px solid #53645f;
  border-radius: 53px;
  background: #14201d;
  box-shadow: 0 40px 80px rgba(9, 36, 28, 0.26), inset 0 0 0 2px #25342f;
  transform: rotate(3deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 44px;
  background: #fff;
}

.phone-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-side {
  position: absolute;
  width: 4px;
  border-radius: 3px;
  background: #27332f;
}

.phone-side-left {
  top: 120px;
  left: -5px;
  height: 72px;
}

.phone-side-right {
  top: 154px;
  right: -5px;
  height: 102px;
}

.privacy-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 40px rgba(11, 43, 34, 0.14);
  backdrop-filter: blur(12px);
}

.privacy-chip span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.privacy-chip b {
  font-size: 11px;
}

.privacy-chip small {
  color: #73807b;
  font-size: 9px;
}

.chip-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  color: #076444;
  background: #d8f7e6;
  font-weight: 800;
}

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

.chip-hidden {
  top: 70px;
  left: -42px;
}

.chip-top {
  top: 105px;
  right: -43px;
}

.chip-bottom {
  bottom: 110px;
  left: -34px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(14, 111, 79, 0.13);
  border-radius: 50%;
}

.orbit-one {
  width: 510px;
  height: 510px;
}

.orbit-two {
  width: 630px;
  height: 630px;
}

.proof-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding: 22px max(24px, calc((100vw - 1180px) / 2));
  color: #d5eee2;
  background: var(--deep);
}

.proof-strip p {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.proof-strip div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.proof-strip span {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip span::before {
  content: "◆";
  margin-right: 9px;
  color: var(--mint);
  font-size: 7px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 620;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.63);
}

.feature-card-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  min-height: 460px;
  background: #e4f2e9;
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #7f8d88;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 440px;
}

.feature-card h3 {
  margin-bottom: 16px;
  font-size: 31px;
  font-weight: 640;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.feature-card p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.hidden-demo {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 360px;
  padding-left: 50px;
}

.demo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 68px;
  padding: 12px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.demo-row span {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #c8d8ce;
}

.demo-row i {
  width: 52%;
  height: 8px;
  border-radius: 9px;
  background: #d5dfd9;
}

.ghost {
  filter: blur(3px);
  opacity: 0.65;
}

.unlock-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 50px rgba(25, 70, 54, 0.13);
  transform: translate(-42%, -50%);
  backdrop-filter: blur(12px);
}

.face-id {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border-radius: 15px;
  color: var(--green);
  background: #d8f5e5;
  font-size: 25px;
}

.unlock-card b {
  margin-bottom: 5px;
  font-size: 14px;
}

.unlock-card small {
  color: #76837e;
  font-size: 10px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 35px 0 92px;
  border-radius: 20px;
  font-size: 32px;
}

.feature-icon.green {
  color: #0b6e4c;
  background: #d8f7e6;
}

.dark-card {
  color: var(--white);
  background: var(--deep);
}

.dark-card .feature-number,
.dark-card p {
  color: #a6b7b0;
}

.shield-demo {
  position: relative;
  display: grid;
  place-items: center;
  height: 190px;
  margin-bottom: 15px;
}

.shield-demo > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 88px;
  height: 102px;
  color: var(--deep);
  background: var(--mint);
  font-size: 28px;
  font-weight: 800;
  clip-path: polygon(50% 0, 94% 18%, 87% 70%, 50% 100%, 13% 70%, 6% 18%);
}

.blocked-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(146, 232, 191, 0.45), transparent);
}

.line-one {
  top: 46px;
  width: 80%;
}

.line-two {
  top: 94px;
  width: 100%;
}

.line-three {
  top: 144px;
  width: 68%;
}

.search-card {
  grid-column: 1 / -1;
}

.search-demo {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: 580px;
  height: 58px;
  margin: 25px 0 18px;
  padding: 0 16px;
  border: 1px solid #d9dfdc;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(13, 53, 40, 0.07);
}

.search-demo p {
  color: #89948f;
}

.search-demo b {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 9px;
  color: #1765d8;
  background: #eef4ff;
}

.engine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 52px;
}

.engine-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #64716c;
  background: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 650;
}

.workflow {
  padding-top: 0;
}

.workflow-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
  padding: 75px;
  border-radius: 34px;
  color: var(--white);
  background: var(--deep);
  box-shadow: var(--shadow);
}

.eyebrow.light {
  color: var(--mint);
}

.workflow-copy h2 {
  margin-bottom: 26px;
}

.workflow-copy h2 em,
.download-card h2 em {
  color: var(--mint);
}

.workflow-copy > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
  color: #9eb0a9;
  font-size: 16px;
  line-height: 1.7;
}

.workflow ol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.workflow li:last-child {
  border-bottom: 0;
}

.workflow li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(189, 255, 217, 0.35);
  border-radius: 50%;
  color: var(--mint);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.workflow li div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.workflow li b {
  font-size: 14px;
}

.workflow li small {
  color: #859992;
  font-size: 11px;
}

.privacy {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 100px;
}

.privacy-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.privacy-mark img {
  position: relative;
  z-index: 3;
  width: 126px;
  height: 126px;
  border: 7px solid var(--paper);
  border-radius: 29px;
  box-shadow: 0 25px 60px rgba(11, 78, 56, 0.25);
}

.rings,
.rings span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.rings span {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(13, 111, 79, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.rings span:nth-child(1) {
  width: 220px;
  height: 220px;
  background: rgba(146, 232, 191, 0.14);
}

.rings span:nth-child(2) {
  width: 340px;
  height: 340px;
}

.rings span:nth-child(3) {
  width: 470px;
  height: 470px;
}

.privacy-copy h2 {
  margin-bottom: 26px;
}

.privacy-copy > p {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.privacy-points {
  display: grid;
  gap: 5px;
  margin-top: 30px;
}

.privacy-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-points > div > span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: var(--green);
  background: #d8f4e4;
  font-size: 12px;
  font-weight: 800;
}

.privacy-points p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0;
}

.privacy-points b {
  font-size: 13px;
}

.privacy-points small {
  color: #7c8984;
  font-size: 11px;
}

.download {
  padding-top: 20px;
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: 84px 40px;
  border-radius: 36px;
  color: var(--white);
  background: var(--green);
  text-align: center;
}

.download-glow {
  position: absolute;
  top: -250px;
  left: 50%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 255, 217, 0.25), transparent 64%);
  transform: translateX(-50%);
}

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

.download-card > img {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 18px;
  box-shadow: 0 17px 35px rgba(2, 39, 27, 0.25);
}

.download-card .eyebrow {
  justify-content: center;
  margin-bottom: 19px;
}

.download-card h2 {
  margin-bottom: 22px;
}

.download-card > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #d3f4e5;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  width: min(1180px, calc(100% - 48px));
  min-height: 120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

footer p,
footer a {
  margin: 0;
  color: #71807a;
  font-size: 11px;
}

footer .footer-brand {
  color: var(--ink);
  font-size: 14px;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

footer a:hover {
  color: var(--green);
}

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

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

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero-visual {
    transform: scale(0.82);
  }

  .chip-top {
    right: -90px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .workflow-card {
    gap: 55px;
    padding: 60px 50px;
  }

  .privacy {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 32px, 1180px);
    height: 72px;
  }

  .site-header > nav {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 4px;
    border: 0;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .site-header .mobile-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .site-header .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 13px 6px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    display: block;
    width: min(100% - 32px, 1180px);
    padding: 75px 0 35px;
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  h1 {
    font-size: clamp(56px, 17vw, 78px);
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    height: 630px;
    margin-top: 35px;
    transform: scale(0.88);
  }

  .chip-top {
    right: -35px;
  }

  .chip-hidden {
    left: -35px;
  }

  .chip-bottom {
    left: -35px;
  }

  .proof-strip {
    padding: 26px 20px;
    text-align: center;
  }

  .proof-strip div {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: 90px 0;
  }

  .section-heading {
    text-align: center;
  }

  .section-heading .eyebrow {
    justify-content: center;
  }

  .section-heading > p:last-child {
    max-width: 520px;
    margin: 0 auto;
  }

  h2 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .feature-grid,
  .feature-card-large {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-large {
    grid-column: auto;
    min-height: 390px;
    padding: 32px 26px;
  }

  .feature-card-large {
    min-height: 690px;
  }

  .feature-copy {
    justify-content: flex-start;
  }

  .hidden-demo {
    padding-left: 0;
  }

  .unlock-card {
    transform: translate(-50%, -50%);
  }

  .feature-icon {
    margin-bottom: 65px;
  }

  .workflow {
    padding-top: 0;
  }

  .workflow-card {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 48px 26px;
    text-align: center;
  }

  .workflow-card .eyebrow {
    justify-content: center;
  }

  .workflow-copy > p:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  .workflow li {
    text-align: left;
  }

  .privacy {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .privacy-mark {
    min-height: 390px;
    transform: scale(0.82);
  }

  .privacy-copy {
    text-align: center;
  }

  .privacy-copy .eyebrow {
    justify-content: center;
  }

  .privacy-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .privacy-points {
    text-align: left;
  }

  .download {
    padding-top: 0;
  }

  .download-card {
    padding: 62px 22px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 35px 0;
    text-align: center;
  }

  footer > div {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 14px;
  }

  .hero-visual {
    width: calc(100% + 32px);
    margin-left: -16px;
    transform: scale(0.75);
  }

  .privacy-chip {
    min-width: 190px;
  }

  .chip-top {
    right: -70px;
  }

  .chip-hidden {
    top: 70px;
    left: 4px;
  }

  .chip-bottom {
    left: 4px;
  }

  .engine-row {
    margin-bottom: 35px;
  }
}

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

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

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