:root {
  --paper: #f7f8fb;
  --ink: #111827;
  --muted: #475569;
  --line: rgba(17, 24, 39, 0.22);
  --signal: #0f766e;
  --signal-dark: #075f58;
  --white: #ffffff;
  --display: "Syne", sans-serif;
  --mono: "DM Mono", monospace;
  --page: min(1460px, calc(100vw - 56px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

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

.site-header,
footer {
  width: var(--page);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  border-bottom: 1px solid var(--ink);
}

.wordmark {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.wordmark img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.header-side {
  display: flex;
  gap: 28px;
  align-items: center;
}

.preview-label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preview-label i {
  width: 7px;
  height: 7px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.13);
  animation: blink 2s ease-in-out infinite;
}

.header-cta {
  padding: 9px 0 7px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  gap: 5vw;
  align-items: center;
  width: var(--page);
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  padding: 80px 0 72px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--signal-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.94;
}

h1 {
  max-width: 860px;
  margin-bottom: 36px;
  font-size: clamp(60px, 7.3vw, 128px);
  font-weight: 700;
  letter-spacing: -0.065em;
}

h1 em {
  color: var(--signal);
  font-style: normal;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 40px;
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  padding: 17px 19px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--signal);
  border: 1px solid var(--signal);
}

.button-primary:hover {
  background: var(--signal-dark);
}

.text-link {
  padding: 11px 0 8px;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}

.runtime-visual {
  position: relative;
  min-height: 570px;
}

.topology {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background:
    radial-gradient(circle at 50% 47%, rgba(15, 118, 110, 0.17), transparent 28%),
    rgba(247, 248, 251, 0.78);
  box-shadow: 16px 16px 0 var(--ink);
}

.topology::before,
.topology::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.topology::before {
  inset: 22px;
  border: 1px dashed rgba(17, 24, 39, 0.2);
}

.topology::after {
  top: 20px;
  right: 20px;
  width: 56px;
  height: 7px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 7px);
}

.connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-dasharray: 5 8;
  stroke-width: 1.2;
}

.connections path {
  animation: dash 20s linear infinite;
}

.connections circle {
  fill: var(--signal);
  stroke: none;
}

.machine {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 10px;
  width: 180px;
  padding: 13px 14px;
  background: var(--paper);
  border: 1px solid var(--ink);
}

.machine span {
  grid-row: 1 / 3;
  color: var(--signal-dark);
  font-size: 9px;
}

.machine strong {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.machine small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.machine-a {
  top: 54px;
  left: 34px;
}

.machine-b {
  top: 58px;
  right: 32px;
}

.machine-c {
  bottom: 72px;
  left: 42px;
}

.core-mark {
  position: absolute;
  top: 49%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  transform: translate(-50%, -50%);
}

.core-mark img {
  position: relative;
  z-index: 2;
  width: 138px;
  height: 138px;
  filter: drop-shadow(0 12px 18px rgba(7, 95, 88, 0.22));
}

.core-mark b {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.core-pulse {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: pulse 2.4s ease-out infinite;
}

.event-ticker {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  height: 32px;
  padding: 0 11px;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
}

.event-ticker > span {
  color: var(--signal);
  font-weight: 500;
  letter-spacing: 0.13em;
}

.ticker-window {
  height: 15px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  flex-direction: column;
  animation: ticker 10s steps(5) infinite;
}

.ticker-track code {
  height: 15px;
  color: var(--white);
  font-family: var(--mono);
  white-space: nowrap;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.signal-bar p {
  margin: 0;
  padding: 17px 28px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid rgba(247, 248, 251, 0.25);
}

.signal-bar p:last-child {
  border-right: 0;
}

.signal-bar span {
  margin-right: 18px;
  color: var(--signal);
}

.section-pad {
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0;
}

.statement {
  display: grid;
  grid-template-columns: 0.65fr 1.1fr 0.85fr;
  gap: 5vw;
  align-items: start;
}

.statement h2,
.audit-intro h2,
.built-copy h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.2vw, 88px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.statement > p:last-child {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.7;
}

.capabilities {
  padding-top: 0;
}

.capability-row {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.7fr) minmax(300px, 1.35fr) 140px;
  gap: 30px;
  align-items: center;
  min-height: 150px;
  border-top: 1px solid var(--ink);
}

.capability-row:last-child {
  border-bottom: 1px solid var(--ink);
}

.row-number,
.row-tag {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-row h3 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.capability-row p {
  max-width: 700px;
  margin: 0;
  font-size: 15px;
}

.row-tag {
  justify-self: end;
  padding: 6px 9px;
  color: var(--ink);
  border: 1px solid var(--line);
}

.audit-section {
  width: 100%;
  max-width: none;
  padding-right: max(28px, calc((100vw - 1460px) / 2));
  padding-left: max(28px, calc((100vw - 1460px) / 2));
  color: var(--paper);
  background: var(--ink);
}

.audit-intro {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr 0.6fr;
  gap: 4vw;
  align-items: end;
  margin-bottom: 100px;
}

.audit-intro .eyebrow {
  color: var(--signal);
}

.audit-intro p:last-child {
  margin: 0;
  color: rgba(247, 248, 251, 0.65);
}

.audit-chain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(247, 248, 251, 0.38);
  border-bottom: 1px solid rgba(247, 248, 251, 0.38);
}

.audit-chain li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 26px 24px;
  border-right: 1px solid rgba(247, 248, 251, 0.38);
}

.audit-chain li:last-child {
  border-right: 0;
}

.audit-chain li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--ink);
  background: var(--signal);
  content: "→";
  font-size: 11px;
  transform: translateY(-50%);
}

.audit-chain span {
  color: var(--signal);
  font-size: 9px;
}

.audit-chain strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: 26px;
}

.audit-chain small {
  color: rgba(247, 248, 251, 0.55);
  font-size: 9px;
}

.built-for {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
}

.built-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.built-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
}

.built-list span,
.built-list b {
  font-size: 11px;
  font-weight: 400;
}

.built-list b {
  color: var(--muted);
}

.closing {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(28px, calc((100vw - 1460px) / 2));
  padding-left: max(28px, calc((100vw - 1460px) / 2));
  overflow: hidden;
  background: var(--signal);
}

.closing::after {
  position: absolute;
  top: -38%;
  right: -4%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(17, 24, 39, 0.35);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(17, 24, 39, 0.05), 0 0 0 140px rgba(17, 24, 39, 0.04);
}

.closing-mark {
  position: absolute;
  top: 50%;
  right: clamp(-90px, -3vw, -24px);
  z-index: 1;
  width: clamp(360px, 39vw, 620px);
  height: auto;
  opacity: 0.22;
  filter: saturate(0.8) contrast(1.12);
  transform: translateY(-50%) rotate(6deg);
}

.closing-index {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 50px;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.closing h2 {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin-bottom: 56px;
}

.button-dark {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--paper);
}

body.dialog-open {
  overflow: hidden;
}

.access-dialog {
  width: min(1080px, calc(100vw - 40px));
  max-width: none;
  max-height: min(880px, calc(100vh - 40px));
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 18px 18px 0 var(--ink);
}

.access-dialog::backdrop {
  background: rgba(17, 24, 39, 0.78);
  backdrop-filter: blur(7px);
}

.access-shell {
  background:
    linear-gradient(rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.access-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 34px 38px;
  border-bottom: 1px solid var(--ink);
}

.access-index {
  display: block;
  margin-bottom: 15px;
  color: var(--signal-dark);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 4.3vw, 66px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0 0 4px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  font: 300 27px/1 var(--mono);
}

.dialog-close:hover {
  color: var(--white);
  background: var(--ink);
}

.access-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
}

.access-context {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 35px 38px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.access-context::after {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(15, 118, 110, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(15, 118, 110, 0.1), 0 0 0 110px rgba(15, 118, 110, 0.07);
  content: "";
}

.access-context img {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  margin-bottom: 30px;
  filter: drop-shadow(0 18px 25px rgba(15, 118, 110, 0.3));
}

.access-context > p {
  position: relative;
  z-index: 1;
  max-width: 280px;
  color: rgba(247, 248, 251, 0.72);
  font-size: 13px;
  line-height: 1.75;
}

.access-context ol {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.access-context li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(247, 248, 251, 0.22);
  font-size: 11px;
}

.access-context li span {
  color: #5eead4;
  font-size: 8px;
}

.access-form {
  display: grid;
  gap: 20px;
  padding: 35px 38px;
  background: rgba(247, 248, 251, 0.88);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.access-form label {
  display: grid;
  gap: 8px;
}

.access-form label > span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-form label small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
}

.access-form input,
.access-form select,
.access-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.42);
  border-radius: 0;
  outline: 0;
  font: 12px/1.5 var(--mono);
}

.access-form select {
  min-height: 47px;
}

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

.access-form input:focus,
.access-form select:focus,
.access-form textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

.form-submit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.form-submit .button {
  min-width: 210px;
  cursor: pointer;
  font-family: var(--mono);
}

.form-submit p,
.email-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.email-fallback {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.email-fallback a {
  color: var(--signal-dark);
  font-weight: 500;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  min-height: 140px;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer p:last-child {
  justify-self: end;
}

.wordmark-footer {
  font-size: 13px;
}

.wordmark-footer img {
  width: 24px;
  height: 24px;
}

.js .hero .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.hero .reveal:nth-child(3) {
  transition-delay: 150ms;
}

.hero .reveal:nth-child(4) {
  transition-delay: 220ms;
}

@keyframes dash {
  to { stroke-dashoffset: -260; }
}

@keyframes pulse {
  0% { opacity: 0.8; transform: translateX(-50%) scale(0.8); }
  75%, 100% { opacity: 0; transform: translateX(-50%) scale(3.4); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes ticker {
  to { transform: translateY(-75px); }
}

@media (max-width: 1050px) {
  :root {
    --page: calc(100vw - 40px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .runtime-visual {
    min-height: 520px;
  }

  .statement,
  .audit-intro {
    grid-template-columns: 0.45fr 1fr;
  }

  .statement > p:last-child,
  .audit-intro > p:last-child {
    grid-column: 2;
  }

  .capability-row {
    grid-template-columns: 50px 0.65fr 1.35fr;
  }

  .row-tag {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100vw - 28px);
  }

  body {
    background-size: 32px 32px;
  }

  .site-header {
    height: 72px;
  }

  .header-side {
    gap: 0;
  }

  .preview-label {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 55px;
  }

  h1 {
    font-size: clamp(49px, 16vw, 78px);
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .text-link {
    align-self: flex-start;
  }

  .runtime-visual {
    min-height: 450px;
  }

  .topology {
    box-shadow: 8px 8px 0 var(--ink);
  }

  .machine {
    width: 145px;
    padding: 10px;
  }

  .machine-a {
    top: 42px;
    left: 24px;
  }

  .machine-b {
    top: 105px;
    right: 22px;
  }

  .machine-c {
    bottom: 64px;
    left: 25px;
  }

  .core-mark {
    top: 54%;
  }

  .core-mark svg {
    width: 88px;
  }

  .signal-bar {
    grid-template-columns: 1fr 1fr;
  }

  .signal-bar p {
    padding: 14px;
    border-bottom: 1px solid rgba(247, 248, 251, 0.25);
  }

  .section-pad {
    padding: 90px 0;
  }

  .statement,
  .audit-intro,
  .built-for {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .statement > p:last-child,
  .audit-intro > p:last-child {
    grid-column: auto;
  }

  .statement h2,
  .audit-intro h2,
  .built-copy h2,
  .closing h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .capability-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .capability-row p {
    grid-column: 2;
  }

  .audit-section,
  .closing {
    padding-right: 14px;
    padding-left: 14px;
  }

  .audit-intro {
    margin-bottom: 60px;
  }

  .audit-chain {
    grid-template-columns: 1fr 1fr;
  }

  .audit-chain li {
    min-height: 150px;
    border-bottom: 1px solid rgba(247, 248, 251, 0.38);
  }

  .audit-chain li:nth-child(2) {
    border-right: 0;
  }

  .audit-chain li:nth-child(2)::after {
    display: none;
  }

  .built-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .closing::after {
    opacity: 0.5;
  }

  .closing-mark {
    right: -110px;
    width: 390px;
    opacity: 0.16;
  }

  .access-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .access-heading {
    padding: 24px 20px;
  }

  .access-heading h2 {
    font-size: 36px;
  }

  .dialog-close {
    width: 36px;
    height: 36px;
  }

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

  .access-context {
    min-height: 0;
    padding: 24px 20px;
  }

  .access-context img {
    width: 78px;
    height: 78px;
    margin-bottom: 16px;
  }

  .access-context ol {
    margin-top: 26px;
  }

  .access-form {
    padding: 25px 20px 30px;
  }

  .field-grid,
  .form-submit {
    grid-template-columns: 1fr;
  }

  .form-submit .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    min-height: 120px;
  }

  footer > p:nth-child(2) {
    display: none;
  }
}

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

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

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