/* Elucidate form-page system — the contact.html + demo-request.html shared
   styling: form controls, hero chrome, section labels, and the numbered row.
   Split out of css/elucidate-atoms.css by domain: the marketing primitives
   every page shares stayed there; this file holds everything only the two
   form pages use. No visual changes — pure reorganisation. Requires
   css/elucidate-tokens.css to be linked first. See STYLE.md → Component atoms
   and STYLING_CONSISTENCY_RECONCILE.md for the reconciliation method. */

/* ────────────────────────────────────────────────────────────────────────
   A. Cream-form atoms — field, input, consent checkbox, submit-row layout,
   submission state. Identical between contact.html (.elu-contact) and
   demo-request.html (.elu-demo); combined selectors below, contact-only
   textarea support and demo-only kbd hint kept as separate rules. The
   submit button itself is .elu-btn.elu-btn-primary (css/elucidate-atoms.css)
   — not styled in this file.
   ──────────────────────────────────────────────────────────────────────── */

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  position: relative;
}
.row-2 .field { margin-bottom: 0; }

.field label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--eh-ink-2);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.field label .req,
.field label .opt {
  font-family: var(--eh-font-mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.field label .req { color: var(--eh-ember); }
.field label .opt { color: var(--eh-ink-soft); opacity: 0.7; }

.elu-contact input.s-input,
.elu-demo input.s-input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--eh-ink-rule);
  border-radius: var(--eh-radius-md);
  color: var(--eh-ink);
  font-family: var(--eh-font-body);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.elu-contact textarea.s-input {
  display: block;
  width: 100%;
  padding: 0 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--eh-ink-rule);
  border-radius: var(--eh-radius-md);
  color: var(--eh-ink);
  font-family: var(--eh-font-body);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
}
.elu-contact input.s-input::placeholder,
.elu-contact textarea.s-input::placeholder,
.elu-demo input.s-input::placeholder {
  color: var(--eh-ink-soft);
  opacity: 0.55;
}
.elu-contact input.s-input:hover,
.elu-contact textarea.s-input:hover,
.elu-demo input.s-input:hover {
  border-color: var(--eh-ink-rule-strong);
  background: rgba(255,255,255,0.88);
}
.elu-contact input.s-input:focus,
.elu-contact textarea.s-input:focus,
.elu-demo input.s-input:focus {
  outline: none;
  border-color: var(--eh-ember);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(234,88,12,0.18);
}

.field-error {
  display: none;
  margin-top: 6px;
  font-family: var(--eh-font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--eh-ember);
}
.elu-contact input.s-input:invalid:not(:focus):not(:placeholder-shown),
.elu-demo input.s-input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: var(--eh-ember);
  background: rgba(234,88,12,0.05);
}
.elu-contact input.s-input:invalid:not(:focus):not(:placeholder-shown) ~ .field-error,
.elu-demo input.s-input:invalid:not(:focus):not(:placeholder-shown) ~ .field-error {
  display: block;
}

/* Consent checkbox row */
.elu-contact label.consent,
.elu-demo label.consent {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  margin: 14px 0 18px;
  background: transparent;
  border: 1px solid var(--eh-ink-rule);
  border-radius: var(--eh-radius-md);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.elu-contact label.consent:hover,
.elu-demo label.consent:hover {
  border-color: var(--eh-ink-rule-strong);
  background: rgba(12,12,20,0.02);
}
.elu-contact label.consent input[type="checkbox"],
.elu-demo label.consent input[type="checkbox"] {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  opacity: 0;
  pointer-events: none;
}
.elu-contact label.consent .consent-text,
.elu-demo label.consent .consent-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--eh-ink-2);
  min-width: 0;
}
.elu-contact label.consent .consent-text a,
.elu-demo label.consent .consent-text a {
  color: var(--eh-ember);
  text-decoration: underline;
  text-decoration-color: rgba(234,88,12,0.40);
  text-underline-offset: 2px;
  transition: text-decoration-color .15s ease;
}
.elu-contact label.consent .consent-text a:hover,
.elu-demo label.consent .consent-text a:hover { text-decoration-color: var(--eh-ember); }
.elu-contact label.consent .consent-mark,
.elu-demo label.consent .consent-mark {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--eh-ink-rule-strong);
  border-radius: var(--eh-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .18s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}
.elu-contact label.consent .consent-mark svg,
.elu-demo label.consent .consent-mark svg { width: 12px; height: 12px; }
.elu-contact label.consent input:checked ~ .consent-mark,
.elu-demo label.consent input:checked ~ .consent-mark {
  background: var(--eh-ink);
  border-color: var(--eh-ink);
  color: #fff;
  transform: scale(1.04);
}
.elu-contact label.consent input:focus-visible ~ .consent-mark,
.elu-demo label.consent input:focus-visible ~ .consent-mark {
  box-shadow: 0 0 0 3px rgba(12,12,20,0.18);
}

/* Submit row. The button itself is .elu-btn.elu-btn-primary (css/elucidate-atoms.css) —
   the submit input used to carry its own .s-button styling here, but that was merged
   into the shared primary button (color/hover/active/focus-visible/disabled all now
   live on .elu-btn-primary) and this rule set was deleted. */
.submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.form-legal {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--eh-ink-rule);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--eh-ink-soft);
}

/* Submitted / failed states — styled overrides that take effect when the
   framework JS reveals them (display swap is owned by framework). */
.elu-contact .form-state,
.elu-demo .form-state {
  padding: 40px 32px;
  background: var(--eh-cream);
  position: relative;
  z-index: 1;
}
.elu-contact .form-state .state-mark,
.elu-demo .form-state .state-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--eh-mint);
  color: #061a0c;
  font-family: var(--eh-font-serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 0 0 6px rgba(0,230,118,0.18);
}
.elu-contact .form-state.is-fail .state-mark,
.elu-demo .form-state.is-fail .state-mark {
  background: var(--eh-ember);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(234,88,12,0.18);
}
.elu-contact .form-state h3,
.elu-demo .form-state h3 {
  font-family: var(--eh-font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--eh-ink);
  margin: 0 0 10px;
}
/* .form-state p body text is .elu-text (css/elucidate-atoms.css); only the
   link styling stays page-local below. */
.elu-contact .form-state p a,
.elu-demo .form-state p a {
  color: var(--eh-ember);
  text-decoration: underline;
  text-decoration-color: rgba(234,88,12,0.45);
  text-underline-offset: 2px;
}

/* ────────────────────────────────────────────────────────────────────────
   B. Hero chrome — status bar, hero eyebrow/title, cream form panel.
   Identical between contact.html (.elu-contact-bg / .ct-hero) and
   demo-request.html (.elu-demo-bg / .demo-hero). Both background orbs are
   shared: contact.html's .bg-orb-2 used a slightly different blue
   (rgba(91,140,255,...)) than demo-request.html's (rgba(77,122,255,...));
   merged on demo-request's value. Hero copy below the title (.hero-brief,
   .brief-row, .hero-foot) also stays page-local: contact's .brief-row
   links an extra hover rule and a slightly different line-height that
   demo-request doesn't share. The lead paragraph (formerly .hero-lead)
   moved to .elu-lead in css/elucidate-atoms.css — see below.
   ──────────────────────────────────────────────────────────────────────── */

.elu-contact-bg .bg-orb,
.elu-demo-bg .bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: elu-fadein 4s ease-out forwards;
}
.elu-contact-bg .bg-orb-1,
.elu-demo-bg .bg-orb-1 {
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  top: -22vh; right: -10vw;
  background: radial-gradient(circle, rgba(255,180,120,0.35) 0%, rgba(234,88,12,0.18) 32%, transparent 70%);
  animation-delay: 0.3s;
}
.elu-contact-bg .bg-orb-2,
.elu-demo-bg .bg-orb-2 {
  width: 50vw; height: 50vw;
  max-width: 720px; max-height: 720px;
  bottom: -28vh; left: -16vw;
  background: radial-gradient(circle, rgba(77,122,255,0.24) 0%, rgba(45,90,255,0.10) 38%, transparent 75%);
  animation-delay: 0.7s; animation-duration: 5s;
}
@keyframes elu-fadein { to { opacity: 1; } }

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--eh-rule);
  border-bottom: 1px solid var(--eh-rule);
  color: var(--eh-white-dim);
  margin-bottom: clamp(48px, 6vw, 88px);
  flex-wrap: wrap;
}
.status-left, .status-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.status-mid  { color: var(--eh-white-dim); }
.status-right { color: var(--eh-white-dim); }
/* .status-dot merged into .elu-pulse-dot (below, near .panel-bar) — same pulsing
   indicator dot, drifted only in size (8px vs 6px) and glow blur (12px vs 8px).
   Standardised on this file's larger values; status-bar's dot takes the
   .is-mint colour modifier, reusing the vocabulary .elu-kicker already uses. */
@keyframes elu-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--eh-ember-bright);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}
.hero-title {
  font-family: var(--eh-font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.026em;
  color: var(--eh-white);
  margin: 0 0 26px;
  font-feature-settings: "ss01", "salt";
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(115deg, var(--eh-ember-soft) 0%, var(--eh-ember-bright) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-panel {
  position: relative;
  background: var(--eh-cream);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 30px 80px -20px rgba(0,0,0,0.55),
    0 8px 28px -8px rgba(0,0,0,0.40),
    0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  isolation: isolate;
}
.form-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(234,88,12,0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Hero copy below the title — key-value brief, footnote. The lead
   paragraph itself is .elu-lead now (css/elucidate-atoms.css) — it was a
   near-duplicate of that marketing atom, drifted in max-width/font-size/
   margin-bottom; canonical values are elu-lead's, which gained this former
   .hero-lead's <em> accent treatment since both hero paragraphs use it.
   Identical between the two pages except .brief-row dd's line-height
   (contact used 1.45, demo-request 1.4 — merged on 1.45, imperceptible),
   and .brief-row dd a/:hover (contact-only rule; inert on demo-request,
   whose brief rows have no links). */
.hero-brief {
  border-top: 1px solid var(--eh-rule-strong);
  border-bottom: 1px solid var(--eh-rule-strong);
  margin-bottom: 28px;
}
.brief-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--eh-rule);
  align-items: baseline;
}
.brief-row:last-child { border-bottom: none; }
.brief-row dt { color: var(--eh-white-dim); }
.brief-row dd {
  font-family: var(--eh-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--eh-white);
  margin: 0;
}
.brief-row dd a {
  color: var(--eh-white);
  border-bottom: 1px dashed var(--eh-white-faint);
  transition: color .15s ease, border-color .15s ease;
}
.brief-row dd a:hover {
  color: var(--eh-ember-bright);
  border-bottom-color: var(--eh-ember-bright);
}
.brief-row dd em {
  font-family: var(--eh-font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--eh-ember-bright);
}
.hero-foot {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--eh-font-mono);
  font-size: 11.5px;
  color: var(--eh-white-dim);
  letter-spacing: 0.04em;
}
.hero-foot .foot-mark {
  font-family: var(--eh-font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--eh-ember-bright);
  font-size: 18px;
  line-height: 1;
  margin-top: -2px;
}

/* Hero layout grid + the console-style form-panel internals + fieldset
   scaffolding + noise texture. Byte-identical between contact.html and
   demo-request.html — extracted here so both form pages share one copy. */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.hero-copy { padding-top: 4px; }

.panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: var(--eh-ink);
  color: var(--eh-white-dim);
  position: relative;
  z-index: 1;
}
.panel-bar-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--eh-ember-bright);
}
/* Pulsing status-indicator dot, shared by .status-bar and .panel-bar.
   Default (ember-bright) is the panel-bar dot; .is-mint is the status-bar
   dot — same modifier name .elu-kicker uses for its mint variant. */
.elu-pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--eh-ember-bright);
  box-shadow: 0 0 12px rgba(251,146,60,0.7);
  animation: elu-pulse 2.6s ease-in-out infinite;
}
.elu-pulse-dot.is-mint {
  background: var(--eh-mint);
  box-shadow: 0 0 12px rgba(0,230,118,0.85);
}
.panel-bar-right { color: var(--eh-white-dim); }

.panel-head {
  padding: 28px 32px 14px;
  position: relative;
  z-index: 1;
}
/* .elu-subhead (css/elucidate-atoms.css) supplies the serif/weight/tracking voice. */
.panel-title {
  font-size: 30px;
  color: var(--eh-ink);
  margin: 0 0 8px;
}
/* .panel-sub caption is .elu-text (css/elucidate-atoms.css) — same 14px body
   text as .form-state p, now one shared atom. */
.panel-body {
  padding: 0 32px 28px;
  position: relative;
  z-index: 1;
}

/* .s-form is the framework's form wrapper — keep it block; children handle layout. */
.elu-contact .s-form,
.elu-demo .s-form { display: block; }

.fset { margin-bottom: 18px; }
.fset legend {
  display: block;
  width: 100%;
  color: var(--eh-ink-soft);
  padding-top: 16px;
  margin-bottom: 14px;
  border-top: 1px solid var(--eh-ink-rule);
}
.fset:first-of-type legend { padding-top: 0; border-top: none; }

.elu-contact-bg .bg-noise,
.elu-demo-bg .bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.42 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

@media (max-width: 1024px) {
  .form-panel { max-width: 560px; width: 100%; margin: 0 auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* Note: the .elu-display { font-size: 32px } mobile override that lived in
   this block stays in css/elucidate-atoms.css — it belongs to the marketing
   display atom, which index.html relies on without linking this file. */
@media (max-width: 640px) {
  .submit-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .elu-contact input.elu-btn-primary,
  .elu-demo input.elu-btn-primary { width: 100%; }
  .status-bar { font-size: 10px; gap: 10px; padding: 12px 0; letter-spacing: 0.12em; }
  .status-mid { display: none; }
  .form-panel { border-radius: 14px; }
  .brief-row { grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; }
  .hero-grid { gap: 40px; }
  .panel-head { padding: 24px 22px 12px; }
  .panel-body { padding: 0 22px 24px; }
}

/* ────────────────────────────────────────────────────────────────────────
   C. Numbered row — the "list of numbered items" component shared by
   contact.html (.channels → "three doors") and demo-request.html
   (.agenda → "the 30 minutes"). ~90% byte-identical between the two;
   unified under .elu-row.

   CTA-capable (Option A): the grid reserves an `auto` column for an
   optional .elu-row-cta. Rows without one (agenda) omit the child; the
   empty `auto` track sizes to zero, so no CTA column is visible — though
   the grid `gap` before it still reserves a gutter. That gutter is
   imperceptible because .elu-row-body is capped at max-width 640 and
   left-aligned, so content never reaches the row's right edge anyway. At
   the 1024px breakpoint :has(.elu-row-cta) swaps in a third grid area so a
   CTA-bearing row gets its own line without forcing an empty track onto
   rows that have none.

   Canonical numbers (drift standardised on the roomier set): column gap
   clamp(20px,4vw,64px), body max-width 640, kicker column 160px. Padding
   and inner margins are deliberately generous — the rows were too dense.
   ──────────────────────────────────────────────────────────────────────── */

.elu-row {
  display: grid;
  grid-template-columns: 110px 160px 1fr auto;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(40px, 4.5vw, 64px) 0;
  border-bottom: 1px solid var(--eh-rule);
  position: relative;
  align-items: start;
}
.elu-row:first-child { border-top: 1px solid var(--eh-rule); }
.elu-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--eh-ember-bright), var(--eh-ember));
  transition: width .6s cubic-bezier(.22,.61,.36,1);
}
.elu-row:hover::before { width: 100%; }

.elu-row-num {
  font-family: var(--eh-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(58px, 6.4vw, 92px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, var(--eh-ember-bright) 0%, var(--eh-ember) 60%, var(--eh-ember-deep) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  user-select: none;
}
.elu-row:hover .elu-row-num { transform: translateX(8px); }

.elu-row-label {
  color: var(--eh-white-dim);
  padding-top: 14px;
  white-space: nowrap;
}

.elu-row-body { max-width: 640px; }
.elu-row-title {
  font-family: var(--eh-font-body);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.28;
  letter-spacing: -0.018em;
  color: var(--eh-white);
  margin-bottom: 20px;
}
.elu-row-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--eh-white-muted);
  margin-bottom: 24px;
}
.elu-row-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.elu-row-tags li {
  color: var(--eh-white-dim);
  padding: 5px 10px;
  border: 1px solid var(--eh-rule-strong);
  border-radius: var(--eh-radius-xs);
  background: rgba(255,255,255,0.025);
}

.elu-row-cta { align-self: center; padding-top: 6px; }
.elu-row-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--eh-font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--eh-white);
  padding: 12px 18px;
  border: 1px solid var(--eh-rule-strong);
  border-radius: var(--eh-radius-pill);
  background: rgba(255,255,255,0.02);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.elu-row-cta a:hover {
  background: var(--eh-ember);
  border-color: var(--eh-ember);
  color: #fff;
  transform: translateY(-1px);
}
.elu-row-cta a svg { width: 14px; height: 14px; transition: transform .25s ease; }
.elu-row-cta a:hover svg { transform: translate(2px, -2px); }

/* Intro paragraph that sits in the section header above an .elu-row list.
   Shared by contact's channels-head and demo-request's agenda-head. */
.elu-row-aside {
  font-size: 15px;
  line-height: 1.6;
  color: var(--eh-white-muted);
  max-width: 420px;
  padding-bottom: 6px;
}

/* Scroll-driven reveal where supported; rows are simply visible elsewhere.
   Self-contained keyframe (does not depend on each page's hero elu-rise). */
@keyframes elu-row-rise {
  to { opacity: 1; transform: translateY(0); }
}
@supports (animation-timeline: view()) {
  .elu-row {
    opacity: 0;
    transform: translateY(24px);
    animation: elu-row-rise linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
}

@media (max-width: 1024px) {
  .elu-row {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "num label"
      "num body";
    gap: 12px 24px;
  }
  .elu-row:has(.elu-row-cta) {
    grid-template-areas:
      "num label"
      "num body"
      "num cta";
  }
  .elu-row-num   { grid-area: num; font-size: 64px; }
  .elu-row-label { grid-area: label; padding-top: 10px; }
  .elu-row-body  { grid-area: body; }
  .elu-row-cta   { grid-area: cta; padding-top: 0; align-self: start; }
  .elu-row-aside { padding-bottom: 0; }
}
@media (max-width: 640px) {
  .elu-row {
    grid-template-columns: 56px 1fr;
    gap: 10px 18px;
  }
  .elu-row-num   { font-size: 48px; }
  .elu-row-label { padding-top: 6px; font-size: 10.5px; }
  .elu-row-cta a { padding: 10px 14px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .elu-row { opacity: 1; transform: none; }
}
