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

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin-italic-variable.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

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

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

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

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

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

:root {
  --bg: #f7f4ee;
  --bg-elev: #fff;
  --ink: #141414;
  --ink-soft: #3b3b3b;
  --ink-muted: #6f6a62;
  --rule: #ddd6c7;
  --rule-strong: #8a8376;
  --navy: #1b3a52;
  --navy-deep: #142a3b;
  --focus: #132f3a;
  --teal: #2a7b8f;
  --ember: #b34c18;
  --ember-soft: #e18a52;
  --error: #8c241f;

  --font-display: "Fraunces", "Times New Roman", Times, serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;

  --max: 1200px;
  --reading: 720px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4.5rem, 10vw, 9rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(20, 20, 20, 0.22) 0 0.45px, transparent 0.7px),
    radial-gradient(circle at 71% 63%, rgba(20, 20, 20, 0.18) 0 0.4px, transparent 0.7px);
  background-position: 0 0, 7px 11px;
  background-size: 17px 19px, 23px 29px;
  mix-blend-mode: multiply;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--bg);
  background: var(--navy);
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

p {
  margin: 0 0 1em;
}

.wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  color: var(--bg);
  background: var(--navy-deep);
  transform: translateY(-150%);
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 238, 0.8);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  transition: border-color 180ms ease, background 180ms ease;
}

.nav.scrolled,
.nav.menu-open {
  border-bottom-color: var(--rule);
  background: rgba(247, 244, 238, 0.96);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  font-variation-settings: "opsz" 14;
  letter-spacing: -0.01em;
}

.brand img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a:not(.portal-btn) {
  position: relative;
  padding: 0.35rem 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  transition: color 150ms ease;
}

.nav-links a:not(.portal-btn)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:not(.portal-btn):hover {
  color: var(--ink);
}

.nav-links a:not(.portal-btn):hover::after {
  transform: scaleX(1);
}

.portal-btn,
.action,
.submit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.portal-btn {
  min-height: 40px;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  color: var(--bg);
  background: var(--navy);
}

.portal-btn::after,
.action::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform 180ms ease;
}

.portal-btn:hover,
.action-primary:hover {
  background: var(--navy-deep);
}

.portal-btn:hover::after,
.action:hover::after {
  transform: translateX(3px);
}

.portal-btn:active,
.action:active,
.submit:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  color: var(--ink);
  background: transparent;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(3.25rem, 8vh, 6.5rem) 0 clamp(3.5rem, 9vh, 7rem);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-mark {
  width: clamp(112px, 14vw, 164px);
  margin-bottom: clamp(1.5rem, 3.5vh, 2.75rem);
  animation: fade-up 800ms 80ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 6.2vw, 5.3rem);
  font-variation-settings: "opsz" 144;
  animation: fade-up 800ms 180ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero h1 .accent {
  color: var(--navy);
  font-style: italic;
  font-weight: 400;
}

.hero-mandate {
  max-width: 46ch;
  margin: clamp(1.4rem, 3vh, 2.25rem) 0 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  animation: fade-up 800ms 280ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-sub {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-variation-settings: "opsz" 24;
  line-height: 1.4;
  animation: fade-up 800ms 350ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
  animation: fade-up 800ms 420ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.action {
  gap: 0.55rem;
  min-width: 118px;
  padding: 0.7rem 1.25rem;
}

.action-primary {
  color: var(--bg);
  background: var(--navy);
}

.action-secondary {
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  background: rgba(247, 244, 238, 0.55);
}

.action-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--bg);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 3rem;
  margin: clamp(1.6rem, 4vh, 3rem) 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--rule);
  animation: fade-up 800ms 500ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-meta dt,
.sec-num,
.pillar-num,
.field label,
.eyebrow {
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta dt {
  margin-bottom: 0.22rem;
}

.hero-meta dd {
  margin: 0;
  font-size: 0.92rem;
}

.hero-orb {
  position: absolute;
  z-index: 1;
  top: -4vw;
  right: -8vw;
  width: clamp(280px, 38vw, 560px);
  height: clamp(280px, 38vw, 560px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(179, 76, 24, 0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(42, 123, 143, 0.2), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(27, 58, 82, 0.1), transparent 70%);
  filter: blur(40px);
  opacity: 0.85;
  pointer-events: none;
}

section {
  position: relative;
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--rule);
}

.sec-head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.sec-num {
  color: var(--ember);
  letter-spacing: 0.18em;
}

.sec-title {
  max-width: 19ch;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.lede {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-variation-settings: "opsz" 36;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.35;
}

.approach-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.approach-copy .lede {
  max-width: 39ch;
}

.approach-bridge {
  max-width: 57ch;
  margin: 0;
  color: var(--ink-soft);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2.75rem, 6vw, 4.75rem);
  border-top: 1px solid var(--rule);
}

.pillar {
  padding: 1.75rem 1.45rem 0 0;
  border-right: 1px solid var(--rule);
}

.pillar:not(:first-child) {
  padding-left: 1.45rem;
}

.pillar:last-child {
  padding-right: 0;
  border-right: 0;
}

.pillar-num {
  margin-bottom: 0.7rem;
}

.pillar h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  font-variation-settings: "opsz" 14;
}

.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.conviction {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-variation-settings: "opsz" 24;
}

.founder-body {
  max-width: var(--reading);
}

.founder-body p {
  color: var(--ink-soft);
}

.founder-body p:first-child {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-variation-settings: "opsz" 24;
  line-height: 1.4;
}

.founder-body p + p {
  margin-top: 1.15em;
}

.contact-shell {
  max-width: 760px;
}

.contact-intro {
  max-width: 58ch;
  margin-bottom: 2.25rem;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.form {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.field {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.58rem 0;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.98rem;
  transition: border-color 150ms ease;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--navy);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-bottom-color: var(--error);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field-error {
  min-height: 1.15em;
  color: var(--error);
  font-size: 0.76rem;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
  min-height: 0;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit {
  justify-self: start;
  min-width: 148px;
  margin-top: 0.15rem;
  padding: 0.75rem 1.45rem;
  border: 0;
  color: var(--bg);
  background: var(--ink);
  text-transform: uppercase;
}

.submit:hover {
  background: var(--navy);
}

.submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  display: none;
  margin-top: 0.15rem;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--navy);
  color: var(--ink);
  background: rgba(27, 58, 82, 0.07);
  font-size: 0.9rem;
}

.form-status.active {
  display: block;
}

.form-status.error {
  border-left-color: var(--error);
  color: var(--error);
  background: rgba(140, 36, 31, 0.07);
}

.form-note,
.privacy-note {
  max-width: 76ch;
  margin: 0.1rem 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.privacy-note {
  margin-top: -0.65rem;
}

.form-note a,
.privacy-note a,
.privacy-copy a,
.foot-links a {
  border-bottom: 1px solid var(--rule-strong);
}

.form-note a:hover,
.privacy-note a:hover,
.privacy-copy a:hover,
.foot-links a:hover {
  border-bottom-color: var(--ember);
}

footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--rule);
}

.foot-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.foot-brand img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.foot-brand span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-variation-settings: "opsz" 14;
  font-weight: 500;
}

.foot-tag {
  justify-self: end;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.disclaimer {
  max-width: 90ch;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.disclaimer p + p {
  margin-top: 1em;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.privacy-hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--rule);
}

.privacy-hero h1 {
  max-width: 12ch;
  margin-top: 0.7rem;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.privacy-hero .lede {
  max-width: 42ch;
  margin-top: 1.5rem;
}

.privacy-section {
  border-top: 0;
}

.privacy-copy {
  max-width: var(--reading);
}

.privacy-copy h2 {
  margin: 2.2rem 0 0.65rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
}

.privacy-copy h2:first-child {
  margin-top: 0;
}

.privacy-copy p,
.privacy-copy li {
  color: var(--ink-soft);
}

.privacy-copy ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
}

.privacy-effective {
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.reveal.reveal-pending.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .approach-copy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-copy .lede,
  .approach-bridge {
    max-width: 62ch;
  }
}

@media (min-width: 861px) {
  #founder .wrap,
  #contact .wrap {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.55fr);
    column-gap: clamp(4rem, 8vw, 7rem);
    align-items: start;
  }

  #founder .sec-head,
  #contact .sec-head {
    margin-bottom: 0;
  }

  .contact-shell {
    max-width: none;
  }

  .disclaimer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    max-width: none;
  }

  .disclaimer p,
  .disclaimer p + p {
    margin: 0;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 16px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links.open {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    border-bottom: 1px solid var(--rule);
    background: var(--bg);
    box-shadow: 0 12px 24px rgba(20, 20, 20, 0.08);
  }

  .nav-links.open a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: 0.98rem;
  }

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

  .nav-links.open .portal-btn {
    min-height: 44px;
    justify-content: center;
    margin-top: 0.75rem;
    padding-inline: 1rem;
  }

  .hero {
    min-height: calc(100svh - 72px);
    padding: clamp(2.5rem, 7vh, 4rem) 0 clamp(2.75rem, 7vh, 4.25rem);
  }

  .hero-mark {
    width: clamp(105px, 29vw, 124px);
    margin-bottom: 1.3rem;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .hero-mandate {
    margin-top: 1.25rem;
    font-size: 1.03rem;
    line-height: 1.4;
  }

  .hero-sub {
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-top: 1.15rem;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.35rem;
    padding-top: 1.1rem;
  }

  .hero-meta dt {
    font-size: 0.61rem;
  }

  .hero-meta dd {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-orb {
    right: -35vw;
    opacity: 0.7;
  }

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

  .pillar,
  .pillar:not(:first-child) {
    padding: 1.1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form {
    gap: 1rem;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .foot-tag {
    justify-self: start;
  }

  footer {
    padding: 3.25rem 0 2.5rem;
  }

  .foot-top {
    margin-bottom: 2.25rem;
  }

  .disclaimer {
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .copyright {
    margin-top: 2rem;
  }
}

@media (max-width: 380px) {
  .hero-actions {
    flex-wrap: nowrap;
  }

  .action {
    min-width: 0;
    flex: 1;
    padding-inline: 0.8rem;
  }

  .hero-meta {
    gap: 0.6rem;
  }
}

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

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

  .reveal,
  .reveal.reveal-pending {
    opacity: 1;
    transform: none;
  }
}
