/* ---- the simple site (Plan 12 spec 3.2, rebuilt in Plan 13 spec 6) ----
 * The second of the tree's two faces: /app, /about, /pricing and /beta, the same product told as ordinary
 * pages. One stylesheet for all four, deliberately standalone: it does NOT load ui.css (the film's handoff).
 * Plan 13: the surface-and-grid kit is gone. Each page has its own structure, built from the film's own
 * devices - Fraunces headings at real size, the italic ask, the diamond bullet, a rule with a diamond
 * between sections, the film's ink ground and periwinkle light. Nothing fades in and nothing lifts on hover;
 * the only motion is the app page's one loop, and reduced motion takes that away.
 * Loaded last of the four sheets, so .glyph's 40px beats .ico's 22px by cascade order alone. */

:root {
  --ground: var(--ink);
  --accent: var(--mark-peri);
  --measure: 66rem;
  --text: 44rem;
  --rule: rgba(207, 199, 216, .22);
}

body { min-height: 100vh; background: var(--ground); color: var(--ivory); }

/* The ground (Plan 15 spec 5). Two soft lights in the brand's own two marks and a grain over them, both
 * fixed: they never scroll, never animate and never repaint, so a page of them costs one paint at load.
 * The film has weather; these pages had a flat ink field, which read as a different product. */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60vw 52vh at 16% 4%, color-mix(in oklab, var(--mark-peri) 20%, transparent) 0, transparent 70%),
    radial-gradient(56vw 46vh at 88% 26%, color-mix(in oklab, var(--mark-violet) 17%, transparent) 0, transparent 72%),
    radial-gradient(70vw 40vh at 50% 104%, color-mix(in oklab, var(--mark-violet) 12%, transparent) 0, transparent 72%);
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- header and nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem clamp(1rem, 5vw, 4rem);
  background: linear-gradient(to bottom, rgba(9, 11, 18, .94), rgba(9, 11, 18, .7));
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ivory); }
.brand-mark { width: 40px; height: auto; }
.brand-word { font-size: 1rem; }
.site-nav { display: flex; gap: clamp(.8rem, 2vw, 1.8rem); align-items: center; }
.site-nav a:not(.cta) {
  font: 500 .78rem/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase;
  color: var(--mist); text-decoration: none; padding: .4rem 0; border-bottom: 1px solid transparent;
}
.site-nav a:not(.cta):hover, .site-nav a:not(.cta):focus-visible { color: var(--ivory); }
.site-nav a[aria-current="page"] { color: var(--ivory); border-bottom-color: var(--accent); }

/* ---- page frame and the devices ---- */
.page { max-width: var(--measure); margin: 0 auto; padding: 0 clamp(1rem, 5vw, 4rem) 6rem; }
.band { padding: clamp(3.6rem, 8vh, 6rem) 0; }
/* The rule with a diamond: between any two bands, a hairline with a 5px square turned on its corner. */
.band + .band { position: relative; border-top: 1px solid var(--rule); }
.band + .band::before { content: ''; position: absolute; top: -3px; left: 50%; width: 5px; height: 5px; background: var(--accent); transform: translateX(-50%) rotate(45deg); }
/* The eyebrow, in brackets: the film labels its rail in mono and these pages had nothing between the rule
 * and the heading. The brackets are pseudo-elements, so no reader ever hears them read out. */
.eyebrow { margin: 0 0 .9rem; font: 500 .7rem/1 var(--font-mono); letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }
.eyebrow::before { content: '[ '; opacity: .5; }
.eyebrow::after { content: ' ]'; opacity: .5; }
/* Display sizes, not article sizes (Plan 15 spec 5): the film opens on 120px of Fraunces and these pages
 * opened on 44, which read as the documentation for the thing rather than the thing. */
.page h1 { font: 400 clamp(3rem, 8vw, 6rem)/1.02 var(--font-head); letter-spacing: -.015em; }
.page h2 { font: 400 clamp(2.4rem, 5vw, 3.8rem)/1.06 var(--font-head); max-width: 22ch; }
.page h3 { font: 500 1.15rem/1.3 var(--font-head); }
.page p { max-width: var(--text); }
.page p + p { margin-top: 1rem; }
/* The ask: the one line in a section that is asked rather than told, set like the film's own asks. */
.ask { font: italic 400 clamp(1.15rem, 1.8vw, 1.4rem)/1.5 var(--font-head); color: var(--ivory); }
/* The heading mark, at 40px. display, because .ico rides on a <span>: an inline box ignores a width. */
.glyph { display: block; width: 40px; height: 40px; background: var(--accent); }
.band > .glyph { margin-bottom: 1rem; }
/* The diamond list: no disc, a 5px square turned on its corner in the accent. One device for every list. */
.diamonds, .plan ul, .rules, .beta-list, .specs { margin: 1.3rem 0 0; padding: 0; max-width: var(--text); list-style: none; }
.diamonds li, .plan li, .rules li, .beta-list li, .specs li { position: relative; padding-left: 1.4rem; color: var(--mist); font-size: .97rem; line-height: 1.6; }
.diamonds li + li, .plan li + li, .rules li + li, .beta-list li + li, .specs li + li { margin-top: .6rem; }
.diamonds li::before, .plan li::before, .rules li::before, .beta-list li::before, .specs li::before {
  content: ''; position: absolute; left: 2px; top: .58em; width: 5px; height: 5px; background: var(--accent); transform: rotate(45deg);
}
.screen { border: 1px solid var(--rule); box-shadow: 0 20px 60px -30px #000; }
.app-loop { display: block; width: 100%; height: auto; }
.lede { margin-top: 1.1rem; max-width: var(--text); color: var(--mist); font-size: 1.06rem; line-height: 1.75; }
.app-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ---- /app: the product ---- */
.app-hero {
  position: relative; overflow: hidden; margin-top: 2.4rem; border: 1px solid var(--rule);
  padding: clamp(2.6rem, 9vh, 5.5rem) clamp(1.3rem, 4vw, 3.2rem);
  background: linear-gradient(160deg, rgba(143, 163, 255, .12), rgba(181, 123, 255, .07) 45%, transparent 72%), rgba(20, 18, 40, .5);
}
.app-hero .app-loop { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.app-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(9, 11, 18, .74), rgba(9, 11, 18, .88) 55%, var(--ground)); }
.app-hero-copy { position: relative; z-index: 1; max-width: 46rem; }
/* .page h1 (0,1,1) beats .wordmark (0,1,0), so the hero's <h1 class="wordmark"> restates the shorthand -
 * the tracking included, or .page h1's -.01em would quietly loosen the wordmark's own -.02em. */
.app-hero .wordmark { font: 300 clamp(56px, 9vw, 120px)/.88 var(--font-head); letter-spacing: -.02em; }
.app-hero .tagline { margin-top: 1rem; font: italic 400 clamp(1.05rem, 2vw, 1.35rem)/1.4 var(--font-head); color: var(--mist); }
.app-hero .hero-line { margin-top: .5rem; font: 500 clamp(1.05rem, 2vw, 1.3rem)/1.4 var(--font-head); }
.app-hero .hero-blurb { margin-top: 1.4rem; color: var(--mist); line-height: 1.75; }

/* The question: three answers side by side, each with its mark, and one line under all three. */
.asks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.4rem, 3vw, 2.8rem); margin-top: 2.2rem; }
.ask-block h3 { margin: .9rem 0 .6rem; font-size: 1.4rem; }
.ask-block p { color: var(--mist); font-size: .97rem; line-height: 1.65; }
.ask-block p:first-of-type { color: var(--ivory); font: italic 400 1.08rem/1.5 var(--font-head); }
.either { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--rule); font: italic 400 1.15rem/1.5 var(--font-head); color: var(--ivory); }

/* Start anywhere: four rows beside the library. A row is mark, name, two plain lines, on a hairline. */
.app-split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); align-items: start; margin-top: 2rem; }
.rows { margin: 0; padding: 0; list-style: none; }
.row { display: grid; grid-template-columns: 40px 1fr; gap: 0 1rem; padding: 1.1rem 0; border-top: 1px solid var(--rule); }
.row:last-child { border-bottom: 1px solid var(--rule); }
.row h3 { margin-bottom: .35rem; }
.row p { color: var(--mist); font-size: .95rem; line-height: 1.6; }
.row p + p { margin-top: .3rem; }
.row .glyph { margin-top: .1rem; }
.app-copy { margin-top: 1.1rem; color: var(--mist); line-height: 1.75; }
.app-copy b { color: var(--ivory); }
.app-lines { line-height: 2.1; }
.app-figure { margin: 1.1rem 0 0; }
.app-figure img { display: block; width: 100%; height: auto; }
.app-figure.tall { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.app-figure figcaption { margin-top: .8rem; font: 500 .66rem/1.4 var(--font-mono); letter-spacing: .16em; text-transform: uppercase; color: rgba(200, 184, 219, .7); }
.app-wide { margin-top: 2.2rem; }

/* The six tools as a bento rather than a column (Plan 15 spec 5): Compose across the top with its picture
 * beside it, the other five as cards under it. A card is a translucent fill and a lit top edge - no
 * backdrop-filter, which is what makes a page of frosted cards expensive to scroll. */
.bento { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr)); }
.bento > * {
  position: relative; isolation: isolate; border-radius: 18px; padding: 1.4rem;
  background: color-mix(in oklab, var(--mark-violet) 7%, rgba(20, 18, 40, .42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13), inset 0 0 0 1px rgba(207, 199, 216, .09), 0 1px 3px rgba(0, 0, 0, .45);
}
/* The glow under the pointer. --px/--py are written by the plain pages' simple.js while a pointer is over the card and
 * are never written at all otherwise, so the default centres it and the opacity keeps it off until hover:
 * a page nobody touches paints none of this. */
.bento > *::after {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .28s ease;
  background: radial-gradient(15rem 15rem at var(--px, 50%) var(--py, 50%), color-mix(in oklab, var(--mark-peri) 30%, transparent) 0, transparent 68%);
}
.bento > *:hover::after, .bento > *:focus-within::after { opacity: 1; }
.bento > .wide { grid-column: 1 / -1; }

.walk { margin-top: 2.4rem; }
/* The first tool keeps the walk's old shape - wide picture, copy beside it - inside its own card. */
.room.wide { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(1.2rem, 3vw, 2.6rem); align-items: center; }
.room img { display: block; width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--rule); box-shadow: 0 20px 60px -30px #000; }
.room .room-shot { margin-bottom: 1rem; }
.room.wide .room-shot { margin-bottom: 0; }
.room h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.room-copy p { color: var(--mist); font-size: .97rem; line-height: 1.6; }
.room-copy p:first-of-type { color: var(--ivory); font: italic 400 1.1rem/1.5 var(--font-head); }
.room-copy p + p { margin-top: .5rem; }
.room-teaser { color: rgba(200, 184, 219, .7); font-size: .88rem; }
.room-copy p + p { margin-top: .5rem; }

/* Core, as a two-column list of what it is, and the specs band as one diamond list. */
.core-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem clamp(1.6rem, 4vw, 3.4rem); margin-top: 2rem; }
.core-item { padding-top: 1rem; border-top: 1px solid var(--rule); }
.core-item h3 { margin-bottom: .5rem; }
.core-item p { color: var(--mist); font-size: .95rem; line-height: 1.65; }
.specs { columns: 2; column-gap: 3rem; max-width: none; }
.specs li { break-inside: avoid; }
.imports { margin-top: 1.6rem; color: var(--mist); font-size: .97rem; line-height: 1.6; }
.app-beta { text-align: center; }
/* .page h2 is capped at 22ch, so the centred band's heading needs the margins to be centred at all. */
.app-beta h2 { margin-left: auto; margin-right: auto; }
.app-beta .lede { margin-left: auto; margin-right: auto; }
.app-beta .app-actions { justify-content: center; }

/* ---- /about: the story ---- */
.about-copy { margin-top: 1.1rem; max-width: var(--text); color: var(--mist); line-height: 1.75; font-size: 1.04rem; }
.about-copy h3 { margin-bottom: .7rem; color: var(--ivory); }
.about-copy .ask { margin-top: 1.6rem; }
.about-copy .closing { margin-top: 1.8rem; font-style: italic; color: var(--silver); }
.lore { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem clamp(1.6rem, 4vw, 3.4rem); margin-top: 2rem; }
.lore-item { padding-top: 1rem; border-top: 1px solid var(--rule); }
.lore-item h3 { margin: .8rem 0 .5rem; font-size: 1.3rem; }
.lore-item p { color: var(--mist); font-size: .95rem; line-height: 1.65; }
/* The road ahead as a stepped list: it is a sequence, so it reads down one line, each step a diamond on it. */
.steps { margin: 2rem 0 0; padding: 0 0 0 1.6rem; list-style: none; border-left: 1px solid var(--rule); max-width: var(--text); }
.step { position: relative; padding: .2rem 0 1.6rem; }
.step::before { content: ''; position: absolute; left: calc(-1.6rem - 3px); top: .85rem; width: 5px; height: 5px; background: var(--accent); transform: rotate(45deg); }
.step:last-child { padding-bottom: 0; }
.step .glyph { width: 28px; height: 28px; margin-bottom: .5rem; }
.step h3 { margin-bottom: .4rem; font-size: 1.25rem; }
.step p { color: var(--mist); font-size: .97rem; line-height: 1.65; }
.about-platforms { margin-top: 2rem; max-width: 52rem; color: var(--mist); line-height: 1.75; }

/* ---- /pricing ---- */
.pricing-free { margin-top: 1.1rem; max-width: var(--text); color: var(--mist); line-height: 1.75; }
.pricing-free a { color: var(--accent); }
.plans { margin-top: 2.2rem; }
.plan { padding-top: 1.6rem; }
.plan > .plan-head > :first-child, .plan > :first-child { margin-top: 0; }
/* The one plan, with its facts beside the price rather than under it; the other two under it, side by side.
 * The facts sit in their own <div class="plan-head"> sibling rather than being pulled across by a grid row
 * span: the old rule said `grid-row: 1 / span 4`, which was the number of things before the list and broke
 * the moment a line was added to it (Plan 15 spec 5). Two children, whatever either contains. */
.plans .plan.wide { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); column-gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
.plans .plan.wide > ul { margin-top: .4rem; }
.plan .glyph { margin-bottom: 1.1rem; }
.plan-tag { margin: 0; font: 500 .62rem/1 var(--font-mono); letter-spacing: .2em; text-transform: uppercase; color: rgba(200, 184, 219, .7); }
.plan h3 { margin-top: .55rem; font-size: 1.4rem; }
.plan-first { position: absolute; top: 1.4rem; right: 1.4rem; font: 500 .58rem/1 var(--font-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.plan-price { margin-top: .9rem; font: 300 clamp(2.4rem, 4vw, 3.4rem)/1 var(--font-head); }
.plan-price small { font-size: .3em; letter-spacing: .04em; color: var(--mist); }
.plan-founding { box-shadow: inset 0 1px 0 var(--accent), inset 0 0 0 1px rgba(207, 199, 216, .09), 0 1px 3px rgba(0, 0, 0, .45); }
.pricing-note { margin-top: 2.6rem; font: italic 400 clamp(1.15rem, 2vw, 1.4rem)/1.5 var(--font-head); }

/* ---- /beta ---- */
/* The facts, each on its own line at display size: this is what the page has to say first. */
.facts { margin: 1.6rem 0 0; padding: 0; list-style: none; }
.facts li { font: 400 clamp(1.4rem, 3vw, 2.2rem)/1.25 var(--font-head); color: var(--ivory); }
.facts li + li { margin-top: .2rem; }
/* The process is a sequence, so it is numbered: a Fraunces numeral on a hairline, then the step. */
.process { margin: 2rem 0 0; padding: 0; list-style: none; counter-reset: step; max-width: var(--text); }
/* The numeral sits in a 3.4rem gutter rather than a grid column: the step is "<b>Apply.</b> the rest",
   and a grid would make the bold and the text two items, dropping the text into the numeral's column. */
.process li { counter-increment: step; position: relative; padding: 1rem 0 1rem 3.4rem; border-top: 1px solid var(--rule); color: var(--mist); line-height: 1.6; }
.process li:last-child { border-bottom: 1px solid var(--rule); }
.process li::before { content: counter(step); position: absolute; left: 0; top: 1.1rem; font: 300 1.8rem/1 var(--font-head); color: var(--accent); }
.process b { color: var(--ivory); font-weight: 500; }
.beta-genres { margin: 1.2rem 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.8rem; }
.beta-genres li { font: 500 clamp(1.15rem, 2.2vw, 1.5rem)/1.3 var(--font-head); color: var(--ivory); }
.beta-genres + p, .beta-list + p { margin-top: 1rem; }
.beta-cost { margin-top: 1rem; font-size: .9rem; color: rgba(200, 184, 219, .7); }
.beta-cost a { color: var(--accent); }
.contact-mail {
  display: inline-block; margin-top: 1.4rem; font: 500 clamp(1.15rem, 2.6vw, 1.6rem)/1.2 var(--font-head);
  color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(143, 163, 255, .35);
}
.contact-mail:hover, .contact-mail:focus-visible { color: var(--ivory); border-bottom-color: var(--silver); }

/* ---- footer ---- */
.site-footer { border-top: 1px solid var(--rule); padding: 2.4rem clamp(1rem, 5vw, 4rem); }
.site-footer-inner { max-width: var(--measure); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
.site-footer nav a { font: 500 .7rem/1 var(--font-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--mist); text-decoration: none; padding-bottom: .3rem; border-bottom: 1px solid var(--silver-dim); }
.site-footer nav a:hover, .site-footer nav a:focus-visible { color: var(--ivory); border-bottom-color: var(--silver); }
/* The copyright line is small text, so 4.5:1 is its floor. At .55 over this ground it measures 3.8:1;
 * at .7 - the alpha the other quiet labels wear - it measures 5.6:1 and is still the quietest line here. */
.site-footer-copy { margin-left: auto; font-size: .82rem; color: rgba(200, 184, 219, .7); }

/* ---- the reveal (Plan 15 spec 5) ----
 * Sections light up as they come into view. Where the browser has scroll-driven animations this is the
 * whole implementation and it needs no JavaScript at all - which is why the plain state is the lit one and
 * the animation darkens the start rather than the other way round. Opacity and transform only.
 *
 * REVEAL: this selector list is mirrored in site/assets/js/simple.js, which only has to do anything on
 * a browser without view(). Change one and change the other. */
@supports (animation-timeline: view()) {
  .band > h2, .band > .lede, .band > .eyebrow, .bento > *, .row, .step, .core-item, .lore-item, .plan, .process li {
    animation: reveal-in linear both;
    animation-timeline: view();
    animation-range: entry 6% cover 30%;
  }
  @keyframes reveal-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

  /* A light passes across each screenshot as its card arrives. One band, moved by transform alone, so it
   * composites and costs the scroll nothing. The wrapper has to clip it, which is why the picture's drop
   * shadow moves up onto the wrapper here - clipped at the wrapper's edge it would otherwise vanish. */
  /* The wrapper names its own view timeline rather than the band asking for view(). It has to: clipping
   * the band makes the wrapper a scroll container, and a view() asked for from inside one resolves
   * against that box - which never scrolls, so the light would sit parked across the picture. */
  .room-shot { position: relative; overflow: hidden; border-radius: 10px; box-shadow: 0 20px 60px -30px #000; view-timeline: --shot block; }
  .room-shot img { box-shadow: none; }
  .room-shot::after {
    content: ''; position: absolute; top: -20%; bottom: -20%; left: 0; width: 42%; pointer-events: none;
    background: linear-gradient(100deg, transparent 0, color-mix(in oklab, var(--mark-peri) 24%, transparent) 46%, transparent 100%);
    transform: translateX(-170%) skewX(-12deg);
    animation: shot-sweep linear both;
    animation-timeline: --shot;
    animation-range: entry 14% cover 46%;
  }
  @keyframes shot-sweep { to { transform: translateX(340%) skewX(-12deg); } }
}
/* No view(), and JavaScript running: simple.js puts .js-reveal on <html> and then watches for each of
 * these crossing into view. The class is what makes this safe - with JavaScript off nothing is hidden, so
 * nothing waits for a reveal that will never come. */
@supports not (animation-timeline: view()) {
  .js-reveal :is(.band > h2, .band > .lede, .band > .eyebrow, .bento > *, .row, .step, .core-item, .lore-item, .plan, .process li) {
    opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease;
  }
  .js-reveal :is(.band > h2, .band > .lede, .band > .eyebrow, .bento > *, .row, .step, .core-item, .lore-item, .plan, .process li).is-in {
    opacity: 1; transform: none;
  }
}

/* ---- narrower ---- */
@media (max-width: 1000px) {
  .asks, .core-list, .lore { grid-template-columns: 1fr; }
  .app-split, .room.wide { grid-template-columns: 1fr; }
  .room.wide .room-shot { margin-bottom: 1rem; }
  .specs { columns: 1; }
  .plans .plan.wide { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .site-header { flex-wrap: wrap; gap: .6rem; }
  .site-nav { gap: .9rem; flex-wrap: wrap; }
  .site-nav a:not(.cta) { font-size: .7rem; letter-spacing: .1em; }
  .cta { padding: .85rem 1.4rem; font-size: .7rem; }
  .cta.small { padding: .55rem .9rem; font-size: .6rem; }
  .site-footer-copy { margin-left: 0; }
  .page h2 { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .app-loop { display: none; }
  /* Everything the lift added that moves, taken away, and said at both the animated and the transitioned
   * spelling: a reader who asked for no motion gets the finished page, not the start of one. */
  .band > h2, .band > .lede, .band > .eyebrow, .bento > *, .row, .step, .core-item, .lore-item, .plan, .process li,
  .js-reveal :is(.band > h2, .band > .lede, .band > .eyebrow, .bento > *, .row, .step, .core-item, .lore-item, .plan, .process li) {
    animation: none; transition: none; opacity: 1; transform: none;
  }
  .bento > *::after, .room-shot::after { display: none; }
}
