/* Integr8 Movement
   One accent colour, a lot of whitespace, system fonts so the first paint is
   instant. Mobile-first: every media query goes up, never down. */

:root {
  --ink:      #16130f;
  --ink-2:    #3a332c;
  --muted:    #6e655c;
  --paper:    #fbf9f6;
  --paper-2:  #f3efe9;
  --rule:     #e4ded5;
  --accent:   #b8462a;
  --accent-2: #97371f;
  --accent-wash: #fbeee9;

  --measure: 34rem;
  --wrap: 68rem;

  --step--1: clamp(.82rem, .79rem + .12vw, .89rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + .4vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.3rem + .75vw, 1.95rem);
  --step-3:  clamp(1.8rem, 1.5rem + 1.5vw, 2.7rem);
  --step-4:  clamp(2.2rem, 1.6rem + 3vw, 4.2rem);

  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --serif: ui-serif, Georgia, "Iowan Old Style", "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); letter-spacing: -0.035em; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: -0.012em; }
p  { margin: 0; text-wrap: pretty; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
@media (min-width: 40em) { .wrap { width: min(100% - 4rem, var(--wrap)); } }

.sr, .skip:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip:focus {
  position: fixed; inset-inline-start: 1rem; inset-block-start: 1rem;
  z-index: 100; background: var(--ink); color: var(--paper);
  padding: .7rem 1rem; border-radius: 3px; width: auto; height: auto;
  clip: auto; margin: 0;
}

/* ── the mark ─────────────────────────────────────────────────────────────
   The 8 turns a quarter turn into an infinity sign. In the header that turn is
   tied to scrolling out of the hero, so the reading changes as you go. */
.mark {
  width: 1.55rem; height: 1.55rem; flex: none;
  color: var(--accent);
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}

/* ── header ─────────────────────────────────────────────────────────────── */
.site-head {
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.head-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; font-weight: 640; letter-spacing: -0.03em;
  font-size: var(--step-0);
}
.brand-8 { color: var(--accent); }
.brand-text { white-space: nowrap; }

.nav-toggle {
  display: block; background: none; border: 0; cursor: pointer;
  width: 2.5rem; height: 2.5rem; padding: 0; color: inherit;
  position: relative; margin-inline-end: -.6rem;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: .55rem; width: 1.4rem; height: 1.5px;
  background: var(--ink); transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle-bar { top: 50%; }
.nav-toggle-bar::before { top: -.42rem; left: 0; }
.nav-toggle-bar::after  { top:  .42rem; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(.42rem) rotate(-90deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { opacity: 0; }

#nav-list {
  list-style: none; margin: 0; padding: 0;
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper); border-bottom: 1px solid var(--rule);
  padding: .5rem 1.25rem 1.25rem;
}
#nav-list.open { display: block; }
#nav-list a {
  display: block; padding: .7rem 0; text-decoration: none;
  border-bottom: 1px solid var(--rule); font-weight: 500;
}
#nav-list li:last-child a { border-bottom: 0; }

@media (min-width: 48em) {
  .nav-toggle { display: none; }
  #nav-list {
    display: flex; position: static; gap: 1.75rem; padding: 0;
    background: none; border: 0; align-items: center;
  }
  #nav-list a {
    border: 0; padding: .25rem 0; font-size: var(--step--1);
    letter-spacing: .01em; position: relative;
  }
  #nav-list a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 1.5px; background: var(--accent);
    transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
  }
  #nav-list a:hover::after, #nav-list a[aria-current="page"]::after { transform: scaleX(1); }
}

/* ── sections ───────────────────────────────────────────────────────────── */
section { padding-block: clamp(3.5rem, 2rem + 7vw, 7rem); }
section + section { border-top: 1px solid var(--rule); }
.tint { background: var(--paper-2); }

.eyebrow {
  font-size: var(--step--1); text-transform: uppercase;
  letter-spacing: .16em; font-weight: 600; color: var(--accent);
  margin-bottom: 1.1rem;
}
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-2); max-width: var(--measure); }
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.15rem; }
.prose p, .prose li { color: var(--ink-2); }

/* ── hero ───────────────────────────────────────────────────────────────── */
.hero { padding-block: clamp(3.5rem, 1.5rem + 10vw, 8.5rem); }
.hero h1 { max-width: 16ch; }
.hero h1 em {
  font-style: normal; color: var(--accent);
  /* the one place the accent carries meaning: the thing you came here for */
}
.hero .lede { margin-top: 1.6rem; font-size: var(--step-1); }
.hero .cta-row { margin-top: 2.4rem; }
.hero-note {
  margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid var(--rule);
  font-size: var(--step--1); color: var(--muted); max-width: 44ch;
}

/* ── buttons ────────────────────────────────────────────────────────────── */
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--ink); color: var(--paper); text-decoration: none;
  padding: .95rem 1.6rem; border-radius: 2px; font-weight: 560;
  font-size: var(--step-0); letter-spacing: -.01em; border: 1px solid var(--ink);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn:active { transform: translateY(1px); }
.btn-ghost { background: none; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { background: none; border-color: var(--ink); color: var(--ink); }
.link-arrow {
  text-decoration: none; font-weight: 560; color: var(--accent);
  border-bottom: 1.5px solid transparent; transition: border-color .2s ease;
}
.link-arrow:hover { border-bottom-color: var(--accent); }
.link-arrow::after { content: " \2192"; }

/* ── the upstream idea ──────────────────────────────────────────────────── */
.split { display: grid; gap: 2.5rem; }
@media (min-width: 52em) {
  .split { grid-template-columns: minmax(0,1fr) minmax(0,1.15fr); gap: 4.5rem; align-items: start; }
  .split-sticky { position: sticky; top: 6rem; }
}

.contrast { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 2.5rem; }
@media (min-width: 40em) { .contrast { grid-template-columns: 1fr 1fr; } }
.contrast > div { background: var(--paper); padding: 1.8rem 1.6rem; }
.contrast h3 { font-size: var(--step-0); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .9rem; }
.contrast .yes h3 { color: var(--accent); }
.contrast p { color: var(--ink-2); }

/* ── modules ────────────────────────────────────────────────────────────── */
.modules { counter-reset: mod; display: grid; gap: 1px; background: var(--rule); border-block: 1px solid var(--rule); margin-top: 3rem; }
@media (min-width: 54em) { .modules { grid-template-columns: repeat(3, 1fr); border: 1px solid var(--rule); } }
.module { background: var(--paper); padding: 2.2rem 1.7rem; counter-increment: mod; position: relative; }
.module::before {
  content: counter(mod, decimal-leading-zero);
  font-size: var(--step--1); font-weight: 650; letter-spacing: .1em;
  color: var(--accent); display: block; margin-bottom: 1.4rem;
}
.module h3 { margin-bottom: .7rem; }
.module p { color: var(--ink-2); font-size: var(--step-0); }
.module .why { margin-top: 1rem; font-size: var(--step--1); color: var(--muted); }

.arrowline {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  font-size: var(--step--1); letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--muted); margin-top: 2.5rem;
}
.arrowline span { color: var(--ink); }
.arrowline i { font-style: normal; color: var(--accent); }

/* ── session walkthrough ────────────────────────────────────────────────── */
.steps { list-style: none; margin: 2.5rem 0 0; padding: 0; max-width: var(--measure); }
.steps li { position: relative; padding: 0 0 1.7rem 2.6rem; border-left: 1px solid var(--rule); }
.steps li:last-child { padding-bottom: 0; border-left-color: transparent; }
.steps li::before {
  content: ""; position: absolute; left: -4.5px; top: .55rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.steps b { display: block; font-weight: 620; margin-bottom: .25rem; }
.steps p { color: var(--ink-2); }

.pull {
  font-size: var(--step-2); line-height: 1.25; letter-spacing: -.025em;
  font-weight: 600; max-width: 22ch; margin-top: 2.5rem;
}
.pull em { font-style: normal; color: var(--accent); }

/* ── testimonials ───────────────────────────────────────────────────────── */
.quotes { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 46em) { .quotes { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.quote blockquote { margin: 0; font-size: var(--step-1); line-height: 1.45; letter-spacing: -.015em; }
.quote blockquote::before { content: "\201C"; color: var(--accent); }
.quote blockquote::after { content: "\201D"; color: var(--accent); }
.quote figcaption { margin-top: .9rem; font-size: var(--step--1); color: var(--muted); }

/* ── CTA band ───────────────────────────────────────────────────────────── */
.band { background: var(--ink); color: var(--paper); }
.band h2 { max-width: 18ch; }
.band .lede { color: #cfc7bd; }
.band .btn { background: var(--accent); border-color: var(--accent); color: #fff; }
.band .btn:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.band .mark { color: var(--accent); width: 2.2rem; height: 2.2rem; margin-bottom: 1.6rem; }

/* ── blog ───────────────────────────────────────────────────────────────── */
.post-list { list-style: none; margin: 3rem 0 0; padding: 0; }
.post-list li { border-top: 1px solid var(--rule); }
.post-list li:last-child { border-bottom: 1px solid var(--rule); }
.post-list a {
  display: block; padding: 1.9rem 0; text-decoration: none;
  transition: padding-inline-start .3s cubic-bezier(.2,.7,.3,1);
}
.post-list a:hover { padding-inline-start: .8rem; }
.post-list h2 { font-size: var(--step-2); max-width: 24ch; }
.post-list a:hover h2 { color: var(--accent); }
.post-list .meta { font-size: var(--step--1); color: var(--muted); margin-bottom: .7rem; letter-spacing: .04em; }
.post-list .dek { color: var(--ink-2); margin-top: .7rem; max-width: 56ch; }

.post-head { padding-block: clamp(3rem, 2rem + 5vw, 5rem) 0; }
.post-head h1 { font-size: var(--step-3); max-width: 22ch; }
.post-head .meta { font-size: var(--step--1); color: var(--muted); letter-spacing: .04em; margin-bottom: 1.2rem; }
.post-head .dek { margin-top: 1.4rem; font-size: var(--step-1); color: var(--ink-2); max-width: var(--measure); line-height: 1.5; }

.answer-box {
  margin-top: 2.2rem; padding: 1.5rem 1.6rem; background: var(--accent-wash);
  border-left: 3px solid var(--accent); max-width: var(--measure);
}
.answer-box p { color: var(--ink); }
.answer-box .k { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .14em; font-weight: 650; color: var(--accent-2); display: block; margin-bottom: .5rem; }

.article { padding-block: 2.5rem clamp(3rem,2rem+5vw,5rem); max-width: var(--measure); }
.article > * + * { margin-top: 1.3rem; }
.article h2 { font-size: var(--step-2); margin-top: 2.8rem; }
.article h3 { font-size: var(--step-1); margin-top: 2rem; }
.article p, .article li { color: var(--ink-2); }
.article ul, .article ol { padding-inline-start: 1.2rem; }
.article li + li { margin-top: .5rem; }
.article a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
.article strong { color: var(--ink); font-weight: 620; }
.article blockquote {
  margin: 2rem 0; padding-inline-start: 1.3rem; border-left: 3px solid var(--accent);
  font-size: var(--step-1); line-height: 1.45; color: var(--ink);
}
.article table { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
.article th, .article td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--rule); }
.article th { font-weight: 620; color: var(--ink); }
.article code { background: var(--paper-2); padding: .1em .35em; border-radius: 2px; font-size: .9em; }
.table-scroll { overflow-x: auto; }

.related { border-top: 1px solid var(--rule); }
.related ul { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.4rem; }
@media (min-width: 46em) { .related ul { grid-template-columns: repeat(3,1fr); gap: 2rem; } }
.related a { text-decoration: none; font-weight: 560; font-size: var(--step-0); line-height: 1.3; display: block; }
.related a:hover { color: var(--accent); }

/* ── form ───────────────────────────────────────────────────────────────── */
.form { max-width: var(--measure); margin-top: 2.5rem; }
.field { margin-bottom: 1.4rem; }
.field label { display: block; font-weight: 560; margin-bottom: .45rem; font-size: var(--step-0); }
.field .hint { font-size: var(--step--1); color: var(--muted); margin-bottom: .5rem; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: var(--step-0); color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule); border-radius: 2px;
  padding: .8rem .9rem;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent);
}
.field textarea { min-height: 8rem; resize: vertical; }
.radio-row { display: grid; gap: .6rem; }
.radio-row label {
  display: flex; gap: .7rem; align-items: flex-start; font-weight: 400;
  border: 1px solid var(--rule); padding: .9rem 1rem; border-radius: 2px; cursor: pointer;
}
.radio-row input { width: auto; margin-top: .28rem; }
.radio-row label:has(input:checked) { border-color: var(--accent); background: var(--accent-wash); }
.hp { position: absolute; left: -9999px; }

.offer-grid { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 2.5rem; }
@media (min-width: 46em) { .offer-grid { grid-template-columns: 1fr 1fr; } }
.offer { background: var(--paper); padding: 2rem 1.7rem; }
.offer h3 { margin-bottom: .5rem; }
.offer .where { font-size: var(--step--1); color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-weight: 620; margin-bottom: 1rem; }
.offer ul { margin: 1rem 0 0; padding-inline-start: 1.1rem; color: var(--ink-2); }
.offer li + li { margin-top: .4rem; }

.faq { max-width: var(--measure); margin-top: 2.5rem; }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; padding: 1.15rem 0; font-weight: 580; font-size: var(--step-0);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 400; font-size: 1.3em; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding-bottom: 1.2rem; color: var(--ink-2); }

/* ── footer ─────────────────────────────────────────────────────────────── */
.site-foot { border-top: 1px solid var(--rule); padding-block: 3.5rem 2.5rem; background: var(--paper-2); }
.foot-top { display: grid; gap: 2.5rem; }
@media (min-width: 46em) { .foot-top { grid-template-columns: 1fr 1.4fr; gap: 4rem; } }
.foot-brand .mark { width: 1.9rem; height: 1.9rem; margin-bottom: .9rem; }
.foot-name { font-weight: 640; letter-spacing: -.02em; }
.foot-tag { color: var(--muted); font-size: var(--step--1); margin-top: .2rem; }
.foot-cols { display: grid; gap: 2rem; }
@media (min-width: 34em) { .foot-cols { grid-template-columns: 1fr 1.5fr; } }
.foot-cols h2 { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 600; margin-bottom: .9rem; }
.foot-cols ul { list-style: none; margin: 0; padding: 0; }
.foot-cols li + li { margin-top: .45rem; }
.foot-cols a { text-decoration: none; font-size: var(--step--1); }
.foot-cols a:hover { color: var(--accent); }
.nap { font-size: var(--step--1); line-height: 1.9; }
.nap a { color: var(--accent); text-decoration: none; }
.areas { font-size: var(--step--1); color: var(--muted); margin-top: .8rem; max-width: 40ch; }
.disclaimer {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--rule);
  font-size: .78rem; line-height: 1.6; color: var(--muted); max-width: 68ch;
}
.copyright { margin-top: 1rem; font-size: .78rem; color: var(--muted); }

/* ── the infinity ─────────────────────────────────────────────────────────
   The logo curve at page scale. It breathes on a 4-in / 6-out count, which is
   the rhythm taught in the sessions, and it draws itself in proportion to how
   far down the page you have read. Decorative only. */
.inf-wrap {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: -30%;
  width: min(150%, 44rem);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.inf { width: 100%; height: auto; overflow: visible; }
.inf path { fill: none; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.inf-ghost { stroke: var(--rule); stroke-width: 1.2; }
.inf-draw {
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-dasharray: 1;
  /* --page runs 0 at the top of the document to 1 at the bottom. A quarter of
     the curve is already drawn on arrival so the hero is not a blank corner;
     reading the page completes it. */
  stroke-dashoffset: calc(.75 * (1 - var(--page, 0)));
  opacity: .85;
}
/* 4 seconds in, 6 seconds out. */
.inf {
  transform-origin: 62% 50%;
  animation: breathe 10s ease-in-out infinite;
}
@keyframes breathe {
  0%   { transform: scale(.965); opacity: .55; }
  40%  { transform: scale(1);    opacity: 1;   }
  100% { transform: scale(.965); opacity: .55; }
}
@media (min-width: 52em) {
  /* Left lobe complete, right lobe running off the edge on purpose. */
  .inf-wrap { inset-inline-end: -14%; width: min(62%, 46rem); }
}
@media (min-width: 80em) {
  .inf-wrap { inset-inline-end: -6%; width: min(56%, 48rem); }
}
.hero { position: relative; overflow: hidden; }
.hero > .wrap { position: relative; z-index: 1; }

/* The header mark turns a quarter turn from 8 into infinity as you leave the
   hero. Same geometry, different reading. */
.site-head .mark { transform: rotate(calc(var(--hero-out, 0) * 90deg)); }
.foot-brand .mark, .band .mark { transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.site-foot:hover .foot-brand .mark, .band:hover .mark { transform: rotate(90deg); }

/* ── scroll reveals ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* A hairline that fills as you read the session walkthrough. */
.steps { position: relative; }
.steps::after {
  content: "";
  position: absolute; inset-block-start: 0; inset-inline-start: 0;
  width: 1px; background: var(--accent);
  height: calc(var(--steps-progress, 0) * 100%);
  transition: height .2s linear;
}

/* Nothing moves if the visitor asked for that. */
@media (prefers-reduced-motion: reduce) {
  .inf { animation: none; transform: none; }
  .inf-draw { stroke-dashoffset: 0; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .site-head .mark { transform: none; }
  .steps::after { height: 100%; }
}

/* ── hero facts ─────────────────────────────────────────────────────────── */
.hero-facts {
  list-style: none; margin: 3rem 0 0; padding: 2rem 0 0;
  border-top: 1px solid var(--rule);
  display: grid; gap: 1.6rem;
}
@media (min-width: 44em) {
  .hero-facts { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 52rem; }
}
.hero-facts li { display: flex; flex-direction: column; gap: .3rem; }
.hero-facts b {
  font-size: var(--step-0); font-weight: 640; letter-spacing: -.015em;
  color: var(--ink);
}
.hero-facts b::before {
  content: ""; display: block; width: 1.4rem; height: 1.5px;
  background: var(--accent); margin-bottom: .8rem;
}
.hero-facts span { font-size: var(--step--1); color: var(--muted); line-height: 1.5; }

/* Stagger uses nth-child so the markup stays clean. */
.reveal-stagger > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger > * {
  opacity: 0; transform: translateY(10px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
}
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}
