/* ============================================================================
   M2AI · AURORA — index.html page styles ONLY.
   Depends on tokens.css → base.css (loaded first). Hand-written vanilla CSS.

   This file adds ONLY what the homepage narrative needs on top of base.css:
     · the hero composition (oversized "Meets AI :) Be Happy" + line-up reveal)
     · the single aurora "thread" that recolours as the story descends
     · per-章 accent shifts (Be Happy → 背景/陰り → 中核 → 共生/夜明け → CTA)
     · editorial flourishes local to this page (lede pull, value cards, CTA scene)

   It introduces NO new colour literals for text — every text colour comes from
   the token set. Decorative glows reuse the aurora-* spectrum tokens only.
   ========================================================================== */

/* ── Page rhythm — let the homepage breathe a touch wider than the default ─── */
.home .section { --section-y: clamp(110px, 16vh, 188px); }
.home .section__head { margin-bottom: clamp(30px, 4.4vw, 58px); }

/* A faint vertical "thread of light" that follows the scroll spine on wide
   viewports — the one aurora line the DESIGN-SYSTEM says veins the whole story.
   Purely decorative; sits behind content, never intercepts pointer/scroll.    */
.home .shell { position: relative; }
.thread {
  position: absolute; top: 0; bottom: 0;
  left: max(calc((100vw - var(--maxw)) / 2 + var(--gutter)), var(--gutter));
  width: 1px; z-index: 0; pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0,
    color-mix(in srgb, var(--aurora-cyan) 50%, transparent) 8%,
    color-mix(in srgb, var(--aurora-teal) 42%, transparent) 30%,
    color-mix(in srgb, var(--aurora-violet) 42%, transparent) 50%,
    color-mix(in srgb, var(--aurora-peach) 46%, transparent) 74%,
    color-mix(in srgb, var(--aurora-amber) 44%, transparent) 90%,
    transparent 100%);
  opacity: .5;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 4%, #000 96%, transparent);
}
@media (max-width: 980px) { .thread { display: none; } }

/* A travelling node that drifts down the thread — the "light" moving through
   the narrative. Pauses instantly under reduced-motion (loop token → 0s).     */
.thread::after {
  content: ""; position: absolute; left: -2.5px; top: 0; width: 6px; height: 6px;
  border-radius: 50%; background: var(--aurora-cyan);
  box-shadow: 0 0 14px 2px color-mix(in srgb, var(--aurora-cyan) 75%, transparent);
  animation: thread-fall var(--loop-drift, 28s) linear infinite;
}
@keyframes thread-fall {
  0%   { top: 2%;  background: var(--aurora-cyan);  box-shadow: 0 0 14px 2px color-mix(in srgb, var(--aurora-cyan) 75%, transparent); }
  50%  {          background: var(--aurora-violet);box-shadow: 0 0 14px 2px color-mix(in srgb, var(--aurora-violet) 75%, transparent); }
  100% { top: 98%; background: var(--aurora-amber); box-shadow: 0 0 16px 3px color-mix(in srgb, var(--aurora-amber) 75%, transparent); }
}

/* ════════════════════════════════════════════════════════════════════════
   01 · HERO — "Meets AI :) Be Happy"
   The face of the brand: a full-viewport stage where the keyword is built
   line-by-line, the :) is the one glowing warm accent, "Be Happy" gradients
   cyan→amber. A monospace coordinate line + scroll cue anchor the foot.
   ════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding-top: calc(var(--nav-h) + clamp(28px, 7vh, 72px));
  padding-bottom: clamp(56px, 10vh, 120px);
  overflow-x: clip;
}

/* a soft warm bloom seated behind the hero word — the "happy" heat */
.hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: min(64vw, 720px); aspect-ratio: 1; border-radius: 50%;
  left: 8%; top: 30%; transform: translateY(-50%);
  background: radial-gradient(circle,
    color-mix(in srgb, var(--aurora-amber) 22%, transparent) 0%,
    color-mix(in srgb, var(--aurora-peach) 12%, transparent) 38%,
    transparent 68%);
  filter: blur(8px); opacity: .9;
}
[data-theme="light"] .hero::before { opacity: .5; }

.hero__inner { position: relative; z-index: 1; }

.hero__eyebrow { margin-bottom: clamp(20px, 3vh, 34px); }

/* The headline. Each line is a clip-window so the text rises into view.       */
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-hero);
  line-height: var(--lh-hero);
  letter-spacing: var(--ls-hero);
  color: var(--text-hi);
  margin: 0;
}
.hero__title .line {
  display: block;
  overflow: hidden;            /* the mask window for the line-up reveal */
  padding-bottom: 0.04em;      /* prevent descender/glyph clipping (g, p, :) */
}
.hero__title .line > span {
  display: inline-block;
  /* No permanent will-change: the line-up (m2-lineUp) is a one-shot that
     completes in ~1.1s and the hero has only a few spans, so a persistent
     compositor hint past the animation is pure waste. */
}
/* JS-on: start the words below the mask, then let them rise (staggered).      */
.js .hero__title .line > span { transform: translateY(112%); opacity: 0; }
.js .home.is-ready .hero__title .line > span {
  animation: m2-lineUp var(--dur-5) var(--ease-out) forwards;
}
.js .home.is-ready .hero__title .line:nth-child(1) > span { animation-delay: .06s; }
.js .home.is-ready .hero__title .line:nth-child(2) > span { animation-delay: .20s; }
.js .home.is-ready .hero__title .line:nth-child(3) > span { animation-delay: .34s; }

/* "Meets AI" — kept calm & high-contrast (Sora, near-display weight).         */
.hero__meets { font-weight: 300; letter-spacing: -0.01em; }

/* the smiley — the single glowing amber accent (base .smile carries the bob).  */
.hero__title .smile { font-size: 0.92em; margin: 0 0.06em 0 0.14em; vertical-align: baseline; }

/* "Be Happy" — the cyan→amber gradient phrase (base .grad carries the hue).    */
.hero__behappy { font-weight: 400; }

/* the lede beneath the headline — the verbatim core concept, calmly stated.    */
.hero__lede {
  margin-top: clamp(26px, 4vh, 42px);
  max-width: 46ch;
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  color: var(--text-mid);
}
.hero__lede .ja-strong { color: var(--text-hi); font-weight: 500; }

.hero__cta { margin-top: clamp(30px, 4.5vh, 46px); }

/* hero foot: a quiet monospace "coordinate" + a scroll cue. Telemetry stays
   OUT of the hero per the system; this is a static specimen line only.        */
.hero__foot {
  position: absolute; left: 0; right: 0; bottom: clamp(20px, 4vh, 40px);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 18px; z-index: 1;
}
.hero__coords {
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .12em;
  color: var(--text-lo); display: flex; flex-wrap: wrap; gap: 6px 18px;
  font-feature-settings: "tnum" 1;
}
.hero__coords b { color: var(--accent-ink); font-weight: 500; }
.hero__coords .sep { color: var(--text-faint); }

.scrollcue {
  display: inline-flex; flex-direction: column; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--text-lo);
}
.scrollcue .rail {
  width: 1px; height: 46px; position: relative; overflow: hidden;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
}
.scrollcue .rail::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 40%;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: cue-fall var(--loop-trace, 1.6s) var(--ease) infinite;
}
@keyframes cue-fall { 0% { transform: translateY(-120%); } 100% { transform: translateY(280%); } }

/* Short / landscape viewports: the absolutely-positioned hero foot can collide
   with the centred CTA (both sit at z-index:1). Below 560px tall, drop the foot
   back into normal flow at the bottom of the hero grid so they never overlap.   */
@media (max-height: 560px) {
  .hero__foot {
    position: static; margin-top: clamp(28px, 6vh, 48px);
  }
}

/* ════════════════════════════════════════════════════════════════════════
   Shared homepage editorial bits
   ════════════════════════════════════════════════════════════════════════ */

/* a chapter number + reading, sitting above each H2 (the 章 marker) */
.chapno {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px;
}
.chapno .n {
  font-family: var(--font-mono); font-size: var(--fs-micro); letter-spacing: .2em;
  color: var(--accent-ink); font-feature-settings: "tnum" 1;
}
.chapno .rule-x { flex: 1; height: 1px; background: var(--rule); max-width: 120px; }

/* a lede paragraph that pulls slightly wider/brighter than .prose body */
.section-lede {
  font-size: var(--fs-lead); line-height: var(--lh-lead);
  color: var(--text-mid); max-width: 54ch;
}
.section-lede .hot { color: var(--text-hi); font-weight: 500; }

/* two-column editorial body: lede/heading rail on the left, prose on the right.
   Collapses to one column on narrow screens.                                  */
.editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.editorial__aside { position: relative; }
@media (max-width: 860px) {
  .editorial { grid-template-columns: 1fr; gap: clamp(22px, 5vw, 36px); }
}

/* sticky aside on tall viewports so the chapter title rides alongside prose */
@media (min-width: 1024px) {
  .editorial__aside.is-sticky { position: sticky; top: calc(var(--nav-h) + 40px); }
}

/* ════════════════════════════════════════════════════════════════════════
   02 · BE HAPPY — the ideal "happy encounter"
   Warmest, most human chapter. Carries the meeting-beat (人 × AI = :)) and
   the verbatim "Meets AI :) Be Happy" keypill. Accent leans cyan↔amber.
   ════════════════════════════════════════════════════════════════════════ */
.behappy { position: relative; }
.behappy__keypill { margin-bottom: clamp(26px, 3.4vw, 40px); }
/* let the keypill carry the full keyword with the glowing smile inside it */
.behappy .keypill .smile { font-size: 1em; margin: 0 1px; }

.behappy__meet { margin-top: clamp(40px, 6vw, 80px); }
.behappy .meeting { max-width: 600px; }

/* a soft warm field behind the encounter scene */
.behappy::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  right: -6%; bottom: 4%; width: min(48vw, 540px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--aurora-amber) 14%, transparent),
    transparent 64%);
  filter: blur(10px);
}
[data-theme="light"] .behappy::after { opacity: .5; }

/* ════════════════════════════════════════════════════════════════════════
   03 · 必要とされる背景 — why this is needed (the divide / 陰り)
   The one chapter that dims: violet shadow, a colder register. Two stat chips
   frame the tension (恩恵の偏り / 取り残し). Verbatim text preserved.
   ════════════════════════════════════════════════════════════════════════ */
.background-sec { position: relative; }
/* a cool violet shadow wash — the "陰り" the story passes through */
.background-sec::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none; inset: 0;
  background: radial-gradient(60% 80% at 82% 12%,
    color-mix(in srgb, var(--aurora-violet) 16%, transparent), transparent 60%);
}
[data-theme="light"] .background-sec::before { opacity: .55; }

/* the tension framed as two contrast chips */
.tension {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 22px); margin-top: clamp(30px, 4vw, 48px);
}
.tension .glass-card { padding: clamp(24px, 2.6vw, 36px); }
.tension .t-k {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 4.4vw, 50px); line-height: 1.05; letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--aurora-blue), var(--aurora-violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.tension .t-d { margin-top: 12px; font-size: var(--fs-small); color: var(--text-mid); line-height: 1.8; }
@media (max-width: 600px) { .tension { grid-template-columns: 1fr; } }

/* the pivot line — "we read this as an opportunity" — brightens back up */
.pivot {
  margin-top: clamp(30px, 4vw, 48px);
  padding-left: clamp(18px, 2vw, 26px);
  border-left: 2px solid color-mix(in srgb, var(--accent) 60%, transparent);
}
.pivot p { font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--text-hi); max-width: 52ch; }

/* ════════════════════════════════════════════════════════════════════════
   04 · コンセプトの中核 — AIエージェント×オーケストレーション
   The technical heart. teal/blue register. The verbatim framework headline,
   an orchestration "constellation" diagram (conductor + agents), telemetry
   (the ONE place telemetry is allowed on the homepage — a deep tech section).
   ════════════════════════════════════════════════════════════════════════ */
.concept { position: relative; }
.concept__frame {
  font-family: var(--font-display); font-weight: 300;
  font-size: var(--fs-h3); line-height: 1.3; letter-spacing: -0.01em;
  color: var(--text-hi); max-width: 22ch; margin-bottom: clamp(20px, 3vw, 32px);
}
.concept__frame .x {
  font-family: var(--font-mono); font-weight: 500; color: var(--accent-ink);
  margin: 0 0.18em; font-size: 0.86em; vertical-align: 0.04em;
}

/* the orchestration diagram: a conductor node + orbiting agent nodes.
   SVG-free, pure CSS — light, crisp, themable. aria-hidden (decorative).      */
.orchestra {
  position: relative; margin-top: clamp(34px, 5vw, 64px);
  height: clamp(280px, 38vw, 420px);
  border-radius: var(--r-xl); overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 50%, color-mix(in srgb, var(--aurora-blue) 8%, transparent), transparent 60%),
    var(--glass-bg);
  border: 1px solid var(--glass-bd);
  -webkit-backdrop-filter: blur(12px) saturate(var(--glass-sat));
  backdrop-filter: blur(12px) saturate(var(--glass-sat));
  box-shadow: inset 0 1px 0 var(--glass-hi);
}
.orchestra::before { /* the cyan→warm top seam, echoing glass-card */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent,
    rgba(94,240,230,.6), rgba(255,157,126,.5), transparent);
}
/* conductor — the integration layer "指揮者" at centre */
.orchestra .conductor {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: clamp(86px, 12vw, 124px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; text-align: center; z-index: 3;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--aurora-cyan) 30%, transparent),
    color-mix(in srgb, var(--aurora-violet) 18%, transparent) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--aurora-cyan) 40%, transparent);
  box-shadow: 0 0 40px color-mix(in srgb, var(--aurora-cyan) 28%, transparent);
}
.orchestra .conductor span {
  font-family: var(--font-display); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-hi); line-height: 1.5;
}
.orchestra .conductor .ja { font-size: 12px; letter-spacing: .1em; color: var(--accent-ink); text-transform: none; }
.orchestra .conductor::after { /* slow halo pulse */
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--aurora-cyan) 26%, transparent);
  animation: orch-halo var(--loop-pulse, 2.6s) ease-in-out infinite;
}
@keyframes orch-halo { 0%,100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.14); opacity: .2; } }

/* agent nodes — placed around the conductor; connector lines drawn via ::before */
.orchestra .agent {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: var(--r-pill);
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-family: var(--font-display); font-size: 12px; color: var(--text-mid);
  white-space: nowrap; box-shadow: var(--shadow-1);
}
.orchestra .agent .d {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
}
.orchestra .agent.warm .d { background: var(--aurora-peach); box-shadow: 0 0 10px var(--aurora-peach); }
.orchestra .agent.violet .d { background: var(--aurora-violet); box-shadow: 0 0 10px var(--aurora-violet); }
/* positions (kept inside the frame; mobile collapses to a list below) */
.orchestra .a1 { left: 8%;  top: 16%; }
.orchestra .a2 { right: 7%; top: 22%; }
.orchestra .a3 { left: 12%; bottom: 18%; }
.orchestra .a4 { right: 10%; bottom: 14%; }
.orchestra .a5 { left: 50%; top: 8%; transform: translateX(-50%); }

/* the faint connective field (decorative crossing lines toward centre) */
.orchestra .links-svg { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }
.orchestra .links-svg line { stroke: color-mix(in srgb, var(--accent) 26%, transparent); stroke-width: 1; }
.orchestra .links-svg .dash { stroke-dasharray: 3 6; animation: orch-flow var(--loop-trace, 1.6s) linear infinite; }
@keyframes orch-flow { to { stroke-dashoffset: -18; } }

/* hide the floating nodes on small screens; show a clean stacked legend */
.orchestra__legend { display: none; }
@media (max-width: 720px) {
  .orchestra { height: auto; padding: clamp(22px, 6vw, 30px); }
  .orchestra .conductor { position: static; transform: none; margin: 0 auto clamp(18px,5vw,26px); }
  .orchestra .conductor::after { animation: none; }
  .orchestra .agent { position: static; transform: none; }
  .orchestra .links-svg { display: none; }
  .orchestra__nodes { display: flex; flex-direction: column; align-items: center; }
  .orchestra__legend {
    display: flex; flex-direction: column; gap: 10px; margin-top: 4px; width: 100%;
  }
  .orchestra .agent { width: 100%; justify-content: flex-start; }
}

/* telemetry strip under the diagram — the one sanctioned homepage instrument.
   Reads live from the flow-field via motion.js; aria-hidden, static on RM.    */
.concept__telemetry { margin-top: clamp(22px, 3vw, 34px); }

/* two supporting prose columns (siloed → 有機的循環 / 自己成長型) */
.concept__prose {
  margin-top: clamp(34px, 5vw, 60px);
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(24px, 4vw, 56px);
}
.concept__prose p { font-size: var(--fs-body); line-height: var(--lh-body); color: var(--text-mid); }
.concept__prose .hot { color: var(--text-hi); font-weight: 500; }
@media (max-width: 760px) { .concept__prose { grid-template-columns: 1fr; gap: 22px; } }

/* ════════════════════════════════════════════════════════════════════════
   05 · 人とAIとの共生 — coexistence (夜明け / the warm resolve)
   Warmest resolution before CTA. amber dawn. Three "柱" cards (pillar) plus
   the closing verbatim "Meets AI :) Be Happy" intent line.
   ════════════════════════════════════════════════════════════════════════ */
.coexist { position: relative; }
.coexist::before { /* the amber dawn rising from the lower edge */
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: 50%; bottom: -20%; width: 120%; height: 70%; transform: translateX(-50%);
  background: radial-gradient(60% 100% at 50% 100%,
    color-mix(in srgb, var(--aurora-amber) 14%, transparent) 0%,
    color-mix(in srgb, var(--aurora-peach) 8%, transparent) 40%, transparent 72%);
  filter: blur(6px);
}
[data-theme="light"] .coexist::before { opacity: .55; }

.coexist__pillars {
  margin-top: clamp(34px, 5vw, 60px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
}
@media (max-width: 900px) { .coexist__pillars { grid-template-columns: 1fr; } }

/* warm-tinted icon for the dawn chapter (overrides base .pillar .ico cool mix) */
.coexist .pillar .ico.warm {
  background: linear-gradient(150deg,
    color-mix(in srgb, var(--aurora-amber) 22%, transparent),
    color-mix(in srgb, var(--aurora-peach) 16%, transparent));
}
.coexist .pillar:hover {
  border-color: color-mix(in srgb, var(--aurora-peach) 42%, transparent);
}
.pillar .ico svg { width: 22px; height: 22px; color: var(--accent-ink); }
.coexist .pillar .ico.warm svg { color: var(--accent-ink-warm); }

/* closing intent — the verbatim "Meets AI :) Be Happy" mission restated */
.coexist__close {
  margin-top: clamp(40px, 6vw, 72px); text-align: center; max-width: 60ch; margin-inline: auto;
}
.coexist__close p { font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--text-mid); }
.coexist__close .hot { color: var(--text-hi); font-weight: 500; }
.coexist__close .spout { margin-bottom: clamp(22px, 3vw, 32px); }

/* ════════════════════════════════════════════════════════════════════════
   06 · CTA — the invitation (Be Happy →)
   A luminous glass panel: restate the keyword, two routes (Contact / Service).
   ════════════════════════════════════════════════════════════════════════ */
.cta { position: relative; }
.cta__panel {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(44px, 7vw, 92px) clamp(26px, 5vw, 72px);
  border-radius: var(--r-xl);
  background: var(--glass-bg-2);
  border: 1px solid var(--glass-bd);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  box-shadow: var(--shadow-3), inset 0 1px 0 var(--glass-hi);
}
.cta__panel::before { /* cyan→warm seam */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent,
    rgba(94,240,230,.6), rgba(255,157,126,.5), transparent);
}
.cta__panel::after { /* a warm glow rising inside the panel */
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: 50%; bottom: -40%; width: 80%; height: 100%; transform: translateX(-50%);
  background: radial-gradient(50% 70% at 50% 100%,
    color-mix(in srgb, var(--aurora-amber) 18%, transparent), transparent 70%);
  filter: blur(8px);
}
.cta__inner { position: relative; z-index: 1; }
.cta__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: var(--fs-h2); line-height: var(--lh-head); letter-spacing: var(--ls-head);
  color: var(--text-hi);
}
.cta__title .smile { font-size: 0.9em; margin: 0 0.04em; }
.cta__sub {
  margin-top: clamp(16px, 2.4vw, 24px); max-width: 48ch; margin-inline: auto;
  font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--text-mid);
}
.cta__actions { margin-top: clamp(28px, 4vw, 40px); justify-content: center; }

/* ── Reduced motion: kill the page-local ambient loops (belt & braces; the
   tokens already collapse, but these animations are named locally). ──────── */
@media (prefers-reduced-motion: reduce) {
  .thread::after,
  .scrollcue .rail::after,
  .orchestra .conductor::after,
  .orchestra .links-svg .dash { animation: none !important; }
  /* show the hero headline resolved immediately (no line-up) */
  .js .hero__title .line > span,
  .js .home.is-ready .hero__title .line > span {
    transform: none !important; opacity: 1 !important; animation: none !important;
  }
}
