/* ── Cue role experiences ──────────────────────────────────────────────
   Shared by the three role pages. The homepage sets the voice; this sets
   the rhythm: a claim, three numbered beats each with a real screen, the
   capabilities named, and a way in. Built mobile-first, because that is
   where most of these are read. */

@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 200 800; font-display: swap;
  src: url('/fonts/Manrope.woff2') format('woff2'); }
@font-face { font-family: 'DM Mono'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/fonts/dm-mono-normal.woff2') format('woff2'); }
@font-face { font-family: 'DM Mono'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('/fonts/dm-mono-medium.woff2') format('woff2'); }

:root {
  --bg: #EFEDE8; --ink: #24231E; --ink-light: #5B584F; --accent: #33302A;
  --action: #FFA83D; --action-edge: #F09010; --action-shade: #C97400;
  --action-lip: rgba(255,255,255,.55); --accent-soft: #FFE4C2;
  --lemon-icing: #F5EDBF; --ice-melt: #C9DCEC; --peach-dust: #F0D8CB;
  --almost-aqua: #C5D2C1; --orchid-tint: #D5CFDC; --raindrops: #E8D5D8;
  --surface: #FFFFFF; --surface-warm: #E5E2DC; --border: #DCD8D1;
  --green: #1F6B45; --red: #B3261E; --blue: #2C5578;
  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, "SF Mono", monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--action-shade); outline-offset: 3px; border-radius: 6px; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 760px) { .wrap { padding: 0 32px; } }

/* ── nav: the same dock as the homepage ── */
nav { position: fixed; top: 14px; left: 10px; right: 10px; z-index: 100; display: flex; justify-content: center; pointer-events: none; }
/* Glass, like the dock on the homepage: these pages open on a picture
   too, and a solid pill cuts a hole in it. It thickens once the page
   scrolls, because past the header the ground behind can be anything. */
.nav-bar { pointer-events: auto; display: flex; align-items: center; gap: 14px; height: 52px; padding-left: 16px; padding-right: 6px; width: 100%; max-width: 620px; background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.34); border-radius: 26px; box-shadow: 0 2px 10px rgba(32,36,29,.07); backdrop-filter: blur(22px) saturate(1.7); -webkit-backdrop-filter: blur(22px) saturate(1.7); transition: background .3s ease, border-color .3s ease; }
nav.scrolled .nav-bar { background: rgba(255,255,255,.94); border-color: rgba(0,0,0,.08); }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-bar, nav.scrolled .nav-bar { background: var(--surface); border-color: rgba(0,0,0,.08); }
}
@media (prefers-reduced-motion: reduce) { .nav-bar { transition: none; } }
.nav-back { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; margin-left: -4px; border-radius: 50%; font-size: 16px; font-weight: 500; color: var(--ink); text-decoration: none; opacity: .72; }
.nav-back:hover { opacity: 1; background: var(--surface-warm); }
.nav-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -.4px; text-decoration: none; color: var(--ink); }
.nav-logo span { color: #856BA3; }
.nav-cta { margin-left: auto; display: inline-flex; align-items: center; height: 40px; padding: 0 16px; border-radius: 20px; background: var(--action); border: 1px solid var(--action-edge); color: var(--ink); font-size: 14.5px; font-weight: 600; text-decoration: none; box-shadow: inset 0 1px 0 var(--action-lip), 0 3px 8px -3px rgba(201,116,0,.45); white-space: nowrap; }
@media (min-width: 760px) { nav { top: 24px; } .nav-bar { border-radius: 16px; max-width: 680px; } }

/* ── buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; font-size: 15px; font-weight: 600; line-height: 1; padding: 15px 22px; border-radius: 13px; text-decoration: none; cursor: pointer; border: 0; }
.btn-primary { background: var(--action); color: var(--ink); border: 1px solid var(--action-edge); box-shadow: inset 0 1px 0 var(--action-lip), 0 4px 10px -3px rgba(201,116,0,.42); transition: transform .18s, box-shadow .18s, filter .18s; }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--ink); }

/* ── role hero ── */
.rh { padding: 104px 0 0; }
.rh-tag { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-light); background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 7px 15px; }
.rh h1 { font-family: var(--font-display); font-size: clamp(34px, 9vw, 68px); font-weight: 700; line-height: 1.04; letter-spacing: -1.8px; margin-top: 20px; max-width: 16ch; }
.rh p { margin-top: 18px; font-size: clamp(16.5px, 4.4vw, 21px); line-height: 1.55; color: var(--ink-light); max-width: 46ch; }
.rh-acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (min-width: 760px) { .rh { padding-top: 168px; } }

/* ── numbered beats ── */
.beats { padding: 40px 0 0; }
.beat { padding-top: 56px; }
.beat + .beat { margin-top: 12px; }
.beat-n { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--action-shade); }
.beat h2 { font-family: var(--font-display); font-size: clamp(26px, 6.6vw, 42px); font-weight: 700; line-height: 1.1; letter-spacing: -1.1px; margin-top: 12px; max-width: 18ch; }
.beat p { margin-top: 14px; font-size: clamp(15.5px, 4.1vw, 17.5px); line-height: 1.65; color: var(--ink-light); max-width: 56ch; }
.beat-screen { margin-top: 26px; }
@media (min-width: 900px) {
  .beat { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: 56px; align-items: center; padding-top: 84px; }
  .beat-screen { margin-top: 0; }
  /* Beats alternate sides. The screen always takes the wide column — a
     dense table squeezed into the copy's 400px is unreadable — so the
     track widths swap along with the order. */
  .beat:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(0, 400px); }
  .beat:nth-child(even) .beat-copy { order: 2; }
}

/* ── the screen frame ── */
.frame { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 30px 70px -40px rgba(0,0,0,.45); }
.frame-bar { display: flex; align-items: center; gap: 7px; padding: 10px 13px; background: var(--surface-warm); border-bottom: 1px solid var(--border); }
.frame-bar i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.frame-url { flex: 1; margin-left: 6px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 5px 10px; font-family: var(--font-mono); font-size: 10px; color: var(--ink-light); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.frame-url b { color: var(--ink); font-weight: 500; }
.frame-in { padding: 16px; }
@media (min-width: 760px) { .frame-in { padding: 20px; } }

/* ── screen vocabulary, shared with the homepage ── */
.t-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
/* The title bar inside an illustrated screen. It is a picture of an app, not
   a section of this document, so it must not sit in the heading order. */
.t-head .t-h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; line-height: 1.2; }
.t-head .t-h4 em { font-style: normal; color: var(--ink-light); font-weight: 400; }
.t-head p { font-size: 10.5px; color: var(--ink-light); margin-top: 4px; line-height: 1.5; }
.t-head-act { display: flex; gap: 6px; flex-shrink: 0; }
.t-btn { font-size: 10px; font-weight: 700; padding: 6px 10px; border-radius: 7px; border: 1px solid var(--border); color: var(--ink-light); background: var(--surface); white-space: nowrap; }
.t-btn.pri { background: var(--action); border-color: var(--action-edge); color: var(--ink); }
.t-chip { display: inline-flex; align-items: center; gap: 4px; font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 7px; border-radius: 5px; white-space: nowrap; }
.t-chip.red { background: rgba(179,38,30,.12); color: #A32218; }
.t-chip.amb { background: rgba(196,97,26,.15); color: #A5510F; }
.t-chip.grn { background: rgba(31,107,69,.13); color: #1F6B45; }
.t-chip.blu { background: rgba(44,85,120,.13); color: #2C5578; }
.t-chip.gry { background: rgba(0,0,0,.055); color: var(--ink-light); }
.t-mono { font-family: var(--font-mono); font-size: 10px; color: var(--ink-light); }
.t-tbl { width: 100%; border-collapse: collapse; }
.t-tbl th { font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-light); text-align: left; padding: 0 8px 7px 0; border-bottom: 1px solid var(--border); }
.t-tbl td { font-size: 11.5px; padding: 9px 8px 9px 0; border-bottom: 1px solid rgba(0,0,0,.05); vertical-align: middle; }
.t-tbl tr:last-child td { border-bottom: none; }
.t-mini { height: 5px; width: 60px; background: var(--border); border-radius: 3px; overflow: hidden; display: inline-block; vertical-align: middle; }
.t-mini i { display: block; height: 100%; border-radius: 3px; }
.t-grid2 { display: grid; grid-template-columns: 1fr; gap: 10px; }
.t-grid3 { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 620px) { .t-grid2 { grid-template-columns: 1fr 1fr; } .t-grid3 { grid-template-columns: repeat(3,1fr); } }
.t-panel { background: var(--surface-warm); border: 1px solid var(--border); border-radius: 10px; padding: 13px; }
.t-panel-h { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.t-note { margin-top: 12px; font-size: 10.5px; line-height: 1.6; color: var(--ink-light); background: rgba(51,48,42,.045); border-left: 2px solid var(--action-shade); padding: 9px 11px; border-radius: 0 7px 7px 0; }
.t-note b { color: var(--ink); font-weight: 700; }
.t-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: 11.5px; }
.t-row:last-child { border-bottom: 0; }
.t-row .edge { width: 3px; align-self: stretch; border-radius: 3px; flex: 0 0 auto; }
.t-row .edge.red { background: #B3261E; } .t-row .edge.amb { background: #C4611A; }
.t-row .edge.blu { background: #2C5578; } .t-row .edge.grn { background: #1F6B45; }
.t-row .b { flex: 1; min-width: 0; }
.t-row .b b { font-weight: 700; }
.t-row .b i { display: block; font-style: normal; font-size: 10px; color: var(--ink-light); margin-top: 2px; }
.t-spark { width: 100%; height: 74px; display: block; }
.t-spark .ln { fill: none; stroke: var(--action-shade); stroke-width: 1.7; }
.t-spark .band { fill: rgba(0,0,0,.045); }
.t-spark .base { stroke: var(--ink-light); stroke-width: .8; stroke-dasharray: 3 3; opacity: .6; }
.t-spark .pt { fill: var(--action-shade); } .t-spark .pt.hot { fill: #B3261E; }
.t-legend { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 7px; font-size: 9.5px; color: var(--ink-light); }
.t-legend i { font-style: normal; }
.t-msg { display: flex; gap: 9px; padding: 8px 0; }
.t-av { width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: #fff; }
.t-msg-b { flex: 1; min-width: 0; }
.t-msg-n { font-size: 10.5px; font-weight: 700; margin-bottom: 2px; }
.t-msg-n span { font-weight: 400; color: var(--ink-light); font-size: 9.5px; margin-left: 5px; }
.t-msg-t { font-size: 11px; line-height: 1.55; color: var(--ink-light); }
.t-ref { margin-top: 6px; border: 1px solid var(--border); border-left: 2.5px solid var(--action-shade); border-radius: 0 7px 7px 0; padding: 7px 10px; background: var(--surface); }
.t-ref-k { font-size: 8.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-light); }
.t-ref-v { font-size: 10.5px; font-weight: 700; margin-top: 2px; }
.t-ref-s { font-size: 9.5px; color: var(--ink-light); }
.t-sys { text-align: center; font-size: 9.5px; color: var(--ink-light); padding: 7px 0; font-style: italic; }

/* ── devices ── */
.phone { width: 232px; margin: 0 auto; background: #1A1A18; border-radius: 34px; padding: 8px; box-shadow: 0 18px 40px -20px rgba(0,0,0,.55), inset 0 0 0 1.5px rgba(255,255,255,.09); }
.phone-in { position: relative; background: var(--surface); border-radius: 27px; overflow: hidden; }
.phone-island { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 62px; height: 15px; background: #1A1A18; border-radius: 100px; z-index: 3; }
.phone-status { display: flex; justify-content: space-between; align-items: center; padding: 8px 14px 4px; font-size: 9.5px; font-weight: 700; }
.phone-status i { font-style: normal; letter-spacing: 1px; opacity: .55; }
.phone-body { padding: 4px 11px 13px; }
.phone-nav { display: flex; gap: 3px; padding: 8px 9px 9px; border-top: 1px solid var(--border); background: var(--surface-warm); }
.phone-nav span { flex: 1; text-align: center; font-size: 8px; font-weight: 700; color: var(--ink-light); padding: 4px 2px; border-radius: 7px; line-height: 1.5; }
.phone-nav span.on { background: var(--surface); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.phone-h { font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -.3px; margin: 2px 0 8px; }
.phone-h em { font-style: normal; font-size: 10px; font-weight: 400; color: var(--ink-light); display: block; margin-top: 2px; }
.watch { width: 150px; margin: 0 auto; }
.watch-band { height: 15px; width: 62px; margin: 0 auto; background: #2B2A27; border-radius: 6px 6px 3px 3px; }
.watch-case { background: #1A1A18; border-radius: 34px; padding: 8px; box-shadow: 0 14px 30px -18px rgba(0,0,0,.6), inset 0 0 0 1.5px rgba(255,255,255,.09); }
.watch-in { background: #000; border-radius: 27px; padding: 12px 11px; color: #fff; min-height: 148px; }
.watch-t { font-size: 8.5px; font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.watch-q { font-size: 12px; font-weight: 700; line-height: 1.3; margin-top: 6px; }
.watch-s { font-size: 9px; color: rgba(255,255,255,.55); margin-top: 4px; font-family: var(--font-mono); }
.watch-b { display: flex; flex-direction: column; gap: 5px; margin-top: 10px; }
.watch-b span { text-align: center; font-size: 10px; font-weight: 700; padding: 7px 4px; border-radius: 9px; background: rgba(255,255,255,.13); }
.watch-b span.y { background: var(--action); color: var(--ink); }
.watch-cap { text-align: center; font-size: 9.5px; color: var(--ink-light); margin-top: 8px; line-height: 1.5; }
.dev-pair { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
/* The phone, and whatever is beside it. By default that is a list, which
   wants the rest of the row; the watch pairing asks for its own narrow
   column below. */
@media (min-width: 620px) { .dev-pair { grid-template-columns: 232px minmax(0, 1fr); gap: 26px; } }
/* Where the phone is the story and the watch is an extra, the watch is
   drawn smaller so the hierarchy is visible before the caption is read. */
.dev-pair-lead .watch { width: 122px; }
@media (min-width: 620px) { .dev-pair-lead { grid-template-columns: 232px 122px; justify-content: center; gap: 30px; } }
.dc-tabs { display: flex; gap: 3px; margin-bottom: 8px; }
.dc-tabs span { flex: 1; text-align: center; font-size: 7.5px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; padding: 5px 2px; border-radius: 6px; background: var(--surface-warm); color: var(--ink-light); }
.dc-tabs span.on { background: var(--ink); color: #fff; }
.dc-keys { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dc-key { border: 1px solid var(--border); border-radius: 11px; padding: 9px 8px; background: var(--surface-warm); }
.dc-key b { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1; }
.dc-key span { display: block; font-size: 8.5px; font-weight: 700; color: var(--ink-light); margin-top: 3px; }
.dc-key.on { background: var(--action); border-color: var(--action-edge); }
.dc-key.on span { color: var(--ink); }
.dc-key.run { background: rgba(179,38,30,.08); border-color: rgba(179,38,30,.3); }
.dc-key.run b { font-size: 15px; font-family: var(--font-mono); }

/* ── capability grid ── */
.caps { padding: 88px 0 0; }
.caps-h { max-width: 620px; }
.caps-h h2 { font-family: var(--font-display); font-size: clamp(27px, 6.8vw, 42px); font-weight: 700; line-height: 1.1; letter-spacing: -1.1px; }
.caps-h p { margin-top: 14px; font-size: 16.5px; line-height: 1.6; color: var(--ink-light); }
.caps-grid { display: grid; grid-template-columns: 1fr; gap: 2px; margin-top: 34px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
@media (min-width: 700px) { .caps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .caps-grid { grid-template-columns: repeat(3, 1fr); } }
.cap { background: var(--bg); padding: 24px 22px; }
.cap h3 { font-family: var(--font-display); font-size: 17.5px; font-weight: 700; letter-spacing: -.3px; line-height: 1.25; }
.cap p { margin-top: 9px; font-size: 14px; line-height: 1.6; color: var(--ink-light); }
.cap .tagline { display: inline-block; margin-top: 11px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--action-shade); }

/* Supporting links, in place of a second feature grid. The story did the
   selling; these only say where to read more. */
.sup { margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--border); }
.sup-h { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -.4px; }
.sup-p { margin-top: 10px; font-size: 15px; line-height: 1.65; color: var(--ink-light); max-width: 62ch; }
.sup-links { display: grid; grid-template-columns: 1fr; gap: 2px; margin-top: 20px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
@media (min-width: 700px) { .sup-links { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .sup-links { grid-template-columns: repeat(5, 1fr); } }
.sup-links a { background: var(--bg); padding: 16px 16px 18px; text-decoration: none; color: var(--ink); transition: background .2s; }
.sup-links a:hover { background: var(--surface); }
.sup-links b { display: block; font-size: 14.5px; font-weight: 700; letter-spacing: -.2px; }
.sup-links span { display: block; margin-top: 5px; font-size: 12.5px; line-height: 1.5; color: var(--ink-light); }

/* ── closing ── */
.rcta { padding: 96px 0 104px; text-align: center; }
.rcta h2 { font-family: var(--font-display); font-size: clamp(28px, 7.4vw, 48px); font-weight: 700; line-height: 1.08; letter-spacing: -1.4px; max-width: 18ch; margin: 0 auto; }
.rcta p { margin: 16px auto 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-light); max-width: 46ch; }
.rcta-acts { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
/* A link at the point where the work actually changes hands, so a reader
   can follow one thread into the next chair instead of reaching the foot of
   the page and starting again. */
.handoff { display: inline-block; margin-top: 20px; text-decoration: none; border-left: 2px solid var(--action); padding: 2px 0 2px 13px; }
.handoff b { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.handoff span { display: block; margin-top: 2px; font-size: 13px; color: var(--ink-light); }
.handoff:hover b { color: var(--action-shade); }

.rcta-switch { margin: 34px auto 0; font-size: 15px; line-height: 1.65; color: var(--ink-light); max-width: 56ch; }
.rcta-switch a { color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--action); }
.rcta-switch a:hover { border-bottom-color: var(--ink); }

.rcta-other { margin-top: 60px; padding-top: 34px; border-top: 1px solid var(--border); }
.rcta-other .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-light); }
.rcta-links { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 16px; }
@media (min-width: 620px) { .rcta-links { grid-template-columns: 1fr 1fr; } }
.rcta-links a { display: block; text-align: left; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; text-decoration: none; color: var(--ink); transition: transform .25s, border-color .25s, box-shadow .25s; }
.rcta-links a:hover { transform: translateY(-2px); border-color: rgba(51,48,42,.34); box-shadow: 0 16px 30px -22px rgba(0,0,0,.55); }
.rcta-links b { display: block; font-size: 16px; font-weight: 700; }
.rcta-links span { display: block; margin-top: 5px; font-size: 13.5px; color: var(--ink-light); }

footer { padding: 44px 0 60px; border-top: 1px solid var(--border); }
.foot { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; font-size: 13.5px; }
.foot a { color: var(--ink-light); text-decoration: none; }
.foot a:hover { color: var(--ink); }

/* ── the reveal, same manner as the homepage ── */
.js .rise { opacity: 0; transform: translateY(18px); }
.rise.in { opacity: 1; transform: none; transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
@media (prefers-reduced-motion: reduce) {
  .js .rise, .rise { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn-primary, .rcta-links a { transition: none; }
}
