/* Paddock landing — editorial, Apple-Messages-blue interaction system.
   Two deliberate themes share one token set: a deep blue-black night
   surface and a warm pale-blue daylight surface. The blues always live
   in the interactive surfaces (composers, primary actions, threads of
   coordinated work), never in the copy. */

:root,
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #04060b;
  --surface: #0a101c;
  --surface-deep: #070b13;
  --ink: #f3f6fb;
  --lead-ink: #ccd4e0;
  --dim: #98a2b3;
  --faint: #6b7484;
  --line: rgba(120, 160, 255, 0.13);
  --blue: #0a84ff;
  --blue-hi: #43a6ff;
  --blue-deep: #0b62e4;
  --glow: rgba(10, 132, 255, 0.32);
  --hero-glow: rgba(10, 132, 255, 0.3);
  --net-stroke: rgba(67, 166, 255, 0.13);
  --net-node: #43a6ff;
  --flow-stroke: rgba(67, 166, 255, 0.42);
  --flow-stroke-faint: rgba(67, 166, 255, 0.16);
  --flow-node: #43a6ff;
  --card-grad-a: #0a101c;
  --card-grad-b: #070b13;
  --card-shadow: 0 24px 70px rgba(3, 10, 26, 0.6), inset 0 1px 0 rgba(140, 180, 255, 0.07);
  --card-shadow-focus: 0 24px 80px rgba(6, 40, 100, 0.55), 0 0 0 4px rgba(10, 132, 255, 0.14),
    inset 0 1px 0 rgba(140, 180, 255, 0.1);
  --card-border-focus: rgba(67, 166, 255, 0.55);
  --meta-line: rgba(120, 160, 255, 0.09);
  --chip-bg: rgba(10, 132, 255, 0.05);
  --chip-bg-hover: rgba(10, 132, 255, 0.12);
  --chip-ink: #b9c3d4;
  --copy-bg: rgba(10, 132, 255, 0.06);
  --footer-bg: #070b13;
  --layer-1: rgba(10, 132, 255, 0.24);
  --layer-2: rgba(10, 132, 255, 0.15);
  --layer-3: rgba(10, 132, 255, 0.08);
  --selection: rgba(10, 132, 255, 0.35);
  --toggle-bg: rgba(10, 132, 255, 0.08);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f8fd;
  --surface: #ffffff;
  --surface-deep: #eef3fb;
  --ink: #0b1322;
  --lead-ink: #26344e;
  --dim: #46536b;
  --faint: #77839a;
  --line: rgba(20, 90, 220, 0.15);
  --blue: #0a84ff;
  --blue-hi: #3ea0ff;
  --blue-deep: #0b62e4;
  --glow: rgba(10, 132, 255, 0.24);
  --hero-glow: rgba(10, 132, 255, 0.16);
  --net-stroke: rgba(10, 110, 255, 0.14);
  --net-node: #0a84ff;
  --flow-stroke: rgba(10, 110, 255, 0.45);
  --flow-stroke-faint: rgba(10, 110, 255, 0.18);
  --flow-node: #0a84ff;
  --card-grad-a: #ffffff;
  --card-grad-b: #f4f8ff;
  --card-shadow: 0 22px 55px rgba(28, 80, 180, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --card-shadow-focus: 0 24px 64px rgba(28, 80, 180, 0.18), 0 0 0 4px rgba(10, 132, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --card-border-focus: rgba(10, 132, 255, 0.5);
  --meta-line: rgba(20, 90, 220, 0.12);
  --chip-bg: rgba(10, 132, 255, 0.06);
  --chip-bg-hover: rgba(10, 132, 255, 0.12);
  --chip-ink: #3a4763;
  --copy-bg: rgba(10, 132, 255, 0.07);
  --footer-bg: #eef3fb;
  --layer-1: rgba(10, 132, 255, 0.28);
  --layer-2: rgba(10, 132, 255, 0.18);
  --layer-3: rgba(10, 132, 255, 0.1);
  --selection: rgba(10, 132, 255, 0.25);
  --toggle-bg: rgba(10, 132, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition: background 260ms ease, color 260ms ease;
}

a {
  color: inherit;
}

button,
textarea {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
}

::selection {
  background: var(--selection);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ---------- header */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 26px 24px 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: block;
  box-shadow: 0 0 22px var(--glow);
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--faint);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 8px 2px;
  transition: color 130ms ease;
}

.nav-link:hover {
  color: var(--ink);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--toggle-bg);
  cursor: pointer;
  transition: border-color 130ms ease, transform 130ms ease;
}

.theme-toggle:hover {
  border-color: var(--card-border-focus);
}

.theme-toggle:active {
  transform: scale(0.92);
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
  stroke: var(--dim);
  fill: none;
  stroke-width: 1.6;
}

.theme-toggle .tt-moon {
  fill: var(--dim);
  stroke: none;
}

html[data-theme="dark"] .tt-moon { display: none; }
html[data-theme="light"] .tt-sun { display: none; }

/* ---------- shared rhythm */

main {
  flex: 1;
}

.shell {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

section {
  position: relative;
  padding: clamp(64px, 8.5vh, 110px) 0;
}

.divider {
  width: min(280px, 60%);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

h1,
h2 {
  margin: 0 auto;
  font-weight: 680;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 640px;
  font-size: clamp(44px, 11vw, 92px);
  line-height: 0.98;
}

/* long statement heroes: mobile-first, at most four lines on a phone */
.h1-statement {
  max-width: 780px;
  font-size: clamp(31px, 8.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.038em;
}

h2 {
  max-width: 600px;
  font-size: clamp(32px, 7.4vw, 54px);
  line-height: 1.03;
}

.kicker {
  margin: 0 0 22px;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue-hi);
}

html[data-theme="light"] .kicker {
  color: var(--blue-deep);
}

.subhead,
.lead {
  max-width: 540px;
  margin: 26px auto 0;
  font-size: clamp(18px, 4.6vw, 22px);
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: var(--lead-ink);
}

.subhead + .subhead {
  margin-top: 16px;
}

/* the hero's defining line: what Paddock is, at a glance */
.h1-statement .h1-line {
  display: block;
}

.hero .subhead-define {
  margin-top: 20px;
  font-size: clamp(19.5px, 5vw, 25px);
  font-weight: 620;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.promise .promise-soft {
  font-weight: 500;
  color: var(--lead-ink);
}

.lead.muted,
.muted {
  color: var(--dim);
}

.body-copy {
  max-width: 520px;
  margin: 26px auto 0;
  font-size: clamp(16.5px, 4.2vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.012em;
  color: var(--dim);
}

.body-copy.emphasis {
  color: var(--ink);
}

.promise {
  margin: 26px auto 0;
  font-size: clamp(17px, 4.4vw, 21px);
  letter-spacing: -0.015em;
  line-height: 1.55;
}

.closer {
  margin: 36px auto 0;
  font-size: clamp(24px, 6vw, 34px);
  letter-spacing: -0.03em;
}

/* ---------- hero glow */

.hero {
  padding-top: clamp(52px, 8vh, 100px);
  padding-bottom: clamp(96px, 14vh, 170px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -220px 0 auto 0;
  height: 560px;
  background: radial-gradient(560px 340px at 50% 30%, var(--hero-glow), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
  animation: breathe 9s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  html { scroll-behavior: auto; }
}

.hero .shell {
  position: relative;
  z-index: 1;
}

/* ---------- primary actions */

.cta-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.imessage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-hi), var(--blue) 55%, var(--blue-deep));
  color: #ffffff;
  font-size: 17px;
  font-weight: 640;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 10px 34px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 130ms ease, box-shadow 130ms ease, filter 130ms ease;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}

.imessage-btn:hover {
  filter: brightness(1.06);
  box-shadow: 0 12px 44px rgba(10, 132, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.imessage-btn:active {
  transform: scale(0.97);
  filter: brightness(0.96);
}

.imessage-btn.launching {
  transform: scale(0.94);
  filter: brightness(1.15);
}

.imessage-btn-primary {
  min-height: 60px;
  padding: 0 38px;
  font-size: 18px;
}

.fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--faint);
}

.fallback .number {
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}

.copy-btn {
  border: 1px solid var(--line);
  background: var(--copy-bg);
  color: var(--dim);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  min-height: 30px;
  min-width: 104px;
  text-align: center;
  transition: color 130ms ease, border-color 130ms ease;
}

.copy-btn:hover,
.copy-btn:active {
  color: var(--ink);
  border-color: var(--card-border-focus);
}

/* ---------- the composer: a real message being written */

.proof-line {
  margin: 26px auto 0;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--blue-hi);
}

html[data-theme="light"] .proof-line {
  color: var(--blue-deep);
}

.prompt-card {
  position: relative;
  max-width: 560px;
  margin: 34px auto 0;
  padding: 18px 18px 16px;
  text-align: left;
  border-radius: 26px;
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.prompt-card:focus-within {
  border-color: var(--card-border-focus);
  box-shadow: var(--card-shadow-focus);
}

.prompt-card.composing {
  border-color: var(--card-border-focus);
}

.prompt-card.composing .prompt-box {
  caret-color: transparent;
}

.prompt-card.edited {
  border-color: var(--card-border-focus);
}

.composer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--faint);
  border-bottom: 1px solid var(--meta-line);
}

.composer-meta img {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: block;
}

.prompt-box {
  display: block;
  width: 100%;
  border: 0;
  resize: none;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
  font-size: clamp(19px, 5vw, 23px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  padding: 16px 6px 6px;
  min-height: 64px;
  outline: none;
  caret-color: var(--blue-hi);
}

.prompt-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prompt-actions .imessage-btn {
  width: 100%;
}

.prompt-actions .fallback {
  justify-content: center;
}

/* ---------- flows: a request becomes coordinated work */

.flow {
  max-width: 560px;
  margin: 18px auto 0;
}

.flow svg {
  display: block;
  width: min(420px, 84%);
  margin: 0 auto;
  overflow: visible;
}

.flow-tall svg {
  width: min(480px, 92%);
}

.fp {
  fill: none;
  stroke: var(--flow-stroke);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.fp-ring-outer {
  stroke: var(--flow-stroke-faint);
  stroke-dasharray: 0.02 0.03;
}

.fp-need-ring {
  stroke: var(--flow-stroke-faint);
}

.fn {
  fill: var(--flow-node);
  opacity: 0.55;
}

.fn-end,
.fn-core {
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(10, 132, 255, 0.75));
}

.flabel {
  fill: var(--faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-anchor: middle;
  font-family: inherit;
}

.layer {
  stroke: var(--flow-stroke-faint);
  stroke-width: 1;
}

.layer-1 { fill: var(--layer-1); }
.layer-2 { fill: var(--layer-2); }
.layer-3 { fill: var(--layer-3); }

.gq circle {
  fill: #2f8fff;
}

.gq {
  filter: drop-shadow(0 0 10px rgba(10, 132, 255, 0.5));
}

/* ---------- chips */

.chips {
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 560px;
}

.chips-alt {
  margin-top: 8px;
}

.chips-label {
  margin: 22px auto 0;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.chip {
  border: 1px solid var(--line);
  background: var(--chip-bg);
  color: var(--chip-ink);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  min-height: 44px;
  text-align: left;
  transition: color 130ms ease, border-color 130ms ease, background 130ms ease;
}

.chip:hover,
.chip:active {
  color: var(--ink);
  border-color: var(--card-border-focus);
  background: var(--chip-bg-hover);
}

/* ---------- hero network */

.hero-net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.np {
  fill: none;
  stroke: var(--net-stroke);
  stroke-width: 1.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.nn {
  fill: none;
  stroke: var(--net-node);
  stroke-width: 5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.22;
}

.nn-3 {
  opacity: 0.4;
  stroke-width: 7;
}

/* ---------- growth */

.growth {
  max-width: 560px;
  margin: 30px auto 0;
}

.growth svg {
  display: block;
  width: min(460px, 88%);
  margin: 0 auto;
  overflow: visible;
}

.gp {
  fill: none;
  stroke: var(--flow-stroke-faint);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.gs circle {
  fill: var(--net-node);
}

/* ---------- closing */

.closing::before {
  content: "";
  position: absolute;
  inset: auto 0 -160px 0;
  height: 460px;
  background: radial-gradient(520px 300px at 50% 70%, var(--hero-glow), transparent 70%);
  pointer-events: none;
}

.closing .shell {
  position: relative;
}

/* ---------- footer */

footer {
  border-top: 1px solid var(--line);
  background: var(--footer-bg);
}

.footer-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--faint);
  text-align: left;
}

.footer-title {
  color: var(--dim);
  font-weight: 650;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  text-decoration: none;
  color: var(--faint);
}

.footer-links a:hover {
  color: var(--ink);
}

/* ---------- the already-handled moment */

.handled {
  background:
    radial-gradient(620px 380px at 50% 45%, rgba(10, 132, 255, 0.14), transparent 72%);
}

.handled-stage {
  position: relative;
  max-width: 620px;
  margin: 38px auto 0;
}

.handled-work {
  display: block;
  width: 100%;
  overflow: visible;
}

.hwl {
  fill: none;
  stroke: var(--flow-stroke-faint);
  stroke-width: 1.1;
  stroke-linecap: round;
}

.hw-labels text {
  fill: var(--faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-anchor: middle;
  font-family: inherit;
}

.hw-core {
  fill: var(--blue-hi);
  filter: drop-shadow(0 0 10px rgba(10, 132, 255, 0.8));
}

.paddock-message {
  position: relative;
  max-width: 480px;
  margin: 10px auto 0;
  padding: 16px 18px 14px;
  text-align: left;
  border-radius: 22px;
  border-bottom-left-radius: 8px;
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}

.pm-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin-bottom: 8px;
}

.pm-head img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: block;
}

.paddock-message p {
  margin: 0;
  font-size: clamp(15.5px, 4vw, 17.5px);
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.pm-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(180deg, var(--blue-hi), var(--blue-deep));
  box-shadow: 0 6px 20px var(--glow);
}

/* choreography: invisible work resolves into one calm message */
html.motion-ready [data-handled] h2 {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.25, 0.7, 0.25, 1);
}

html.motion-ready [data-handled] .hwl {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 650ms cubic-bezier(0.3, 0, 0.2, 1), opacity 700ms ease;
}

html.motion-ready [data-handled] .hw-labels text {
  opacity: 0;
  transition: opacity 500ms ease;
}

html.motion-ready [data-handled] .hw-core {
  opacity: 0;
  transition: opacity 500ms ease;
}

html.motion-ready [data-handled] .handled-work {
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.25, 0.7, 0.25, 1);
}

html.motion-ready [data-handled] .paddock-message {
  opacity: 0;
  transform: translateY(-14px) scale(0.97);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.85, 0.3, 1.05);
}

html.motion-ready [data-handled] .pm-badge {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.2, 0.9, 0.3, 1.25);
}

html.motion-ready [data-handled].hd-head h2 { opacity: 1; transform: none; }
html.motion-ready [data-handled].hd-work .hwl { stroke-dashoffset: 0; }
html.motion-ready [data-handled].hd-work .hwl:nth-of-type(2) { transition-delay: 80ms; }
html.motion-ready [data-handled].hd-work .hwl:nth-of-type(3) { transition-delay: 160ms; }
html.motion-ready [data-handled].hd-work .hwl:nth-of-type(4) { transition-delay: 240ms; }
html.motion-ready [data-handled].hd-work .hwl:nth-of-type(5) { transition-delay: 320ms; }
html.motion-ready [data-handled].hd-work .hwl:nth-of-type(6) { transition-delay: 400ms; }
html.motion-ready [data-handled].hd-work .hwl:nth-of-type(7) { transition-delay: 480ms; }
html.motion-ready [data-handled].hd-work .hwl:nth-of-type(8) { transition-delay: 560ms; }
html.motion-ready [data-handled].hd-work .hw-labels text { opacity: 0.85; transition-delay: 260ms; }
html.motion-ready [data-handled].hd-work .hw-core { opacity: 1; transition-delay: 500ms; }
/* the work settles to about half prominence: still readable, never gone */
html.motion-ready [data-handled].hd-resolve .handled-work {
  opacity: 0.52;
  transform: scale(0.97);
}

html.motion-ready [data-handled].hd-resolve .hw-labels text {
  opacity: 0.95;
}

/* the center brightens and sends one short pulse down into the result */
.hw-core-glow {
  fill: var(--blue-hi);
  opacity: 0;
}

.hw-pulse {
  fill: none;
  stroke: var(--blue-hi);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(10, 132, 255, 0.8));
}

html.motion-ready [data-handled] .hw-pulse {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 380ms cubic-bezier(0.3, 0, 0.3, 1);
}

html.motion-ready [data-handled] .hw-core-glow {
  transition: opacity 320ms ease;
}

html.motion-ready [data-handled].hd-pulse .hw-core {
  filter: drop-shadow(0 0 16px rgba(10, 132, 255, 1));
}

html.motion-ready [data-handled].hd-pulse .hw-core-glow { opacity: 0.35; }
html.motion-ready [data-handled].hd-pulse .hw-pulse { stroke-dashoffset: 0; }
html.motion-ready [data-handled].hd-message .paddock-message { opacity: 1; transform: none; }
html.motion-ready [data-handled].hd-badge .pm-badge { opacity: 1; transform: scale(1); }

/* effortless vendor flow */
.xcheck {
  fill: none;
  stroke: var(--blue-hi);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gq-relationship {
  opacity: 1;
}

/* ---------- the thousand-experts field */

.experts {
  background:
    radial-gradient(700px 420px at 50% 0%, rgba(10, 132, 255, 0.28), transparent 70%),
    linear-gradient(180deg, #0a1a38, #071129 60%, #060d1f);
  border-top: 1px solid rgba(120, 170, 255, 0.16);
  border-bottom: 1px solid rgba(120, 170, 255, 0.16);
}

.experts h2,
.experts .big-claim {
  color: #f5f8ff;
}

.experts .lead {
  color: rgba(226, 235, 252, 0.82);
}

.experts-visual {
  max-width: 560px;
  margin: 34px auto 0;
}

.experts-visual svg {
  display: block;
  width: min(480px, 92%);
  margin: 0 auto;
  overflow: visible;
}

.xline {
  fill: none;
  stroke: rgba(122, 180, 255, 0.34);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.xhouse path {
  fill: none;
  stroke: #7ab9ff;
  stroke-width: 1.8;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(10, 132, 255, 0.6));
}

.xlabels text {
  fill: rgba(200, 220, 250, 0.72);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-anchor: middle;
  font-family: inherit;
}

.big-claim {
  margin: 40px auto 0;
  font-size: clamp(26px, 6.6vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

html.motion-ready [data-experts] .xline {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 700ms cubic-bezier(0.3, 0, 0.2, 1);
}

html.motion-ready [data-experts] .xhouse {
  opacity: 0;
  transform: scale(0.7);
  transform-origin: 280px 152px;
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.9, 0.3, 1.15);
}

html.motion-ready [data-experts] .xlabels text {
  opacity: 0;
  transition: opacity 520ms ease;
}

html.motion-ready [data-experts] .big-claim,
html.motion-ready [data-experts] h2,
html.motion-ready [data-experts] .lead {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.25, 0.7, 0.25, 1);
}

html.motion-ready [data-experts].x-head h2,
html.motion-ready [data-experts].x-head .lead { opacity: 1; transform: none; }
html.motion-ready [data-experts].x-head .lead:nth-of-type(2) { transition-delay: 120ms; }
html.motion-ready [data-experts].x-house .xhouse { opacity: 1; transform: scale(1); }
html.motion-ready [data-experts].x-lines .xline { stroke-dashoffset: 0; }
html.motion-ready [data-experts].x-lines .xline:nth-of-type(2) { transition-delay: 90ms; }
html.motion-ready [data-experts].x-lines .xline:nth-of-type(3) { transition-delay: 180ms; }
html.motion-ready [data-experts].x-lines .xline:nth-of-type(4) { transition-delay: 270ms; }
html.motion-ready [data-experts].x-lines .xline:nth-of-type(5) { transition-delay: 360ms; }
html.motion-ready [data-experts].x-lines .xline:nth-of-type(6) { transition-delay: 450ms; }
html.motion-ready [data-experts].x-lines .xline:nth-of-type(7) { transition-delay: 540ms; }
html.motion-ready [data-experts].x-lines .xline:nth-of-type(8) { transition-delay: 630ms; }
html.motion-ready [data-experts].x-labels .xlabels text { opacity: 1; }
html.motion-ready [data-experts].x-claim .big-claim { opacity: 1; transform: none; }

/* ---------- home-memory labels (closing visual) */

.glabels text {
  fill: var(--faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-anchor: middle;
  font-family: inherit;
}

.glabel-future {
  fill: var(--blue-hi);
}

.gp-future {
  stroke: var(--flow-stroke);
  stroke-width: 1.8;
}

html.motion-ready [data-growth] .glabels text {
  opacity: 0;
  transition: opacity 520ms ease;
}

html.motion-ready [data-growth].g-1 .glabels text { opacity: 0.9; transition-delay: 300ms; }

.pilot-link {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 650;
  color: var(--blue-hi);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
}

.pilot-link:hover {
  text-decoration: underline;
}

html[data-theme="light"] .pilot-link {
  color: var(--blue-deep);
}

/* ---------- disclosures: where the 5x comes from, category economics */

.voice-line {
  font-style: normal;
  color: var(--lead-ink);
}

.disclosure {
  max-width: 560px;
  margin: 26px auto 0;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.disclosure summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: -0.015em;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.disclosure summary::-webkit-details-marker {
  display: none;
}

.disclosure summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--blue-hi);
  border-bottom: 2px solid var(--blue-hi);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.disclosure[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.disclosure summary:hover {
  color: var(--blue-hi);
}

html[data-theme="light"] .disclosure summary:hover {
  color: var(--blue-deep);
}

.disclosure-body {
  padding: 2px 18px 16px;
  animation: disclosure-in 260ms ease;
}

@keyframes disclosure-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .disclosure-body { animation: none; }
}

.disclosure-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--dim);
}

.value-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--dim);
}

.value-list li::marker {
  color: var(--blue-hi);
  font-weight: 700;
}

.value-list sup {
  color: var(--faint);
  font-size: 10px;
}

.sources {
  margin: 16px 0 0;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--faint);
}

.sources a {
  color: var(--faint);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.sources a:hover {
  color: var(--ink);
}

.category-accordion {
  max-width: 560px;
  margin: 6px auto 0;
}

.category-accordion .disclosure {
  margin-top: 10px;
}

/* ---------- diy reply: request and response read as one exchange */

.reply-label {
  max-width: 480px;
  margin: 22px auto 0;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.pm-reply { margin-top: 6px; }

.pm-reply p + p { margin-top: 10px; }

/* the reply arrives once the request is composed */
html.motion-ready .usecase .reply-label,
html.motion-ready .usecase .pm-reply {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 0.8, 0.26, 1);
}

html.motion-ready .usecase.uc-stem .reply-label { opacity: 1; transform: none; }
html.motion-ready .usecase.uc-spread .pm-reply { opacity: 1; transform: none; }

/* ---------- vendor page pieces */

.vendor-beats {
  max-width: 540px;
  margin: 44px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  counter-reset: beat;
}

.beat {
  position: relative;
  padding: 0 0 30px 42px;
  counter-increment: beat;
}

.beat::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 28px;
  bottom: -2px;
  width: 2px;
  background: linear-gradient(180deg, var(--flow-stroke), var(--flow-stroke-faint));
  border-radius: 2px;
}

.beat:last-child {
  padding-bottom: 0;
}

.beat:last-child::before {
  display: none;
}

.beat::after {
  content: counter(beat);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-hi), var(--blue-deep));
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 12px var(--glow);
}

.beat h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.beat p {
  margin: 6px 0 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--dim);
}

.artifact-heading {
  margin: 34px auto 0;
  font-size: clamp(19px, 4.8vw, 24px);
  font-weight: 650;
  letter-spacing: -0.02em;
  max-width: 460px;
}

.artifacts {
  max-width: 560px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.artifact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card-grad-a), var(--card-grad-b));
  box-shadow: var(--card-shadow);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dim);
  text-align: center;
}

.artifact svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--blue-hi);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html[data-theme="light"] .artifact svg {
  stroke: var(--blue-deep);
}

@media (max-width: 519px) {
  .artifacts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mail-note {
  margin: 14px auto 0;
  font-size: 13.5px;
  color: var(--faint);
  max-width: 420px;
}

/* ---------- legal pages */

.legal {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.legal h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  margin-bottom: 40px;
  max-width: none;
}

.legal h2 {
  margin-top: 38px;
  font-size: 20px;
  max-width: none;
}

.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--lead-ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- wider screens */

@media (min-width: 760px) {
  .prompt-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .prompt-actions .imessage-btn {
    width: auto;
    min-width: 200px;
  }

  .prompt-actions .fallback {
    justify-content: flex-end;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 12.5px;
  }
}

@media (max-width: 759px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .imessage-btn-primary {
    width: 100%;
    max-width: 380px;
  }

  .nav-link {
    font-size: 12.5px;
  }
}

/* ================= motion system =================
   One story: a request activates Paddock, work spreads, progress
   returns, the knowledge stays with the home. Transforms/opacity/
   stroke only; each choreography plays once via IntersectionObserver
   and settles. All initial hidden states live under html.motion-ready
   so no-JS and reduced-motion visitors always see the complete
   resting composition. */

/* hero entrance */
html.motion-ready .mark {
  opacity: 0;
  transform: scale(0.7);
  filter: blur(6px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.9, 0.3, 1.2), filter 700ms ease;
}

html.motion-ready.hero-mark .mark {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

html.motion-ready .hero .kicker,
html.motion-ready .hero h1,
html.motion-ready .hero .subhead,
html.motion-ready .hero .give-chips,
html.motion-ready .hero .promise,
html.motion-ready .hero .cta-wrap {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.25, 0.7, 0.25, 1);
}

html.motion-ready.hero-copy .hero .kicker { opacity: 1; transform: none; }
html.motion-ready.hero-copy .hero h1 { opacity: 1; transform: none; transition-delay: 120ms; }
html.motion-ready.hero-copy .hero .subhead { opacity: 1; transform: none; transition-delay: 300ms; }
html.motion-ready.hero-copy .hero .subhead + .subhead { transition-delay: 420ms; }
html.motion-ready.hero-copy .hero .give-chips { opacity: 1; transform: none; transition-delay: 480ms; }
html.motion-ready .hero .proof-line,
html.motion-ready .hero .flow {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.25, 0.7, 0.25, 1);
}
html.motion-ready.hero-copy .hero .proof-line { opacity: 1; transform: none; transition-delay: 500ms; }
html.motion-ready.hero-copy .hero .flow { opacity: 1; transform: none; transition-delay: 860ms; }
html.motion-ready.hero-copy .hero .promise { opacity: 1; transform: none; transition-delay: 560ms; }
html.motion-ready.hero-copy .hero .cta-wrap { opacity: 1; transform: none; transition-delay: 700ms; }

html.motion-ready .np {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 700ms cubic-bezier(0.3, 0, 0.2, 1);
}

html.motion-ready .nn {
  opacity: 0;
  transition: opacity 500ms ease;
}

html.motion-ready .hero.net-stem .np-stem { stroke-dashoffset: 0; }
html.motion-ready .hero.net-stem .nn-1 { opacity: 0.22; }
html.motion-ready .hero.net-fan .np-fan { stroke-dashoffset: 0; }
html.motion-ready .hero.net-fan .np-fan:nth-of-type(4) { transition-delay: 150ms; }
html.motion-ready .hero.net-fan .nn-2 { opacity: 0.22; transition-delay: 300ms; }
html.motion-ready .hero.net-conv .np-conv { stroke-dashoffset: 0; }
html.motion-ready .hero.net-conv .np-conv:nth-of-type(6) { transition-delay: 140ms; }
html.motion-ready .hero.net-conv .nn-3 { opacity: 0.4; transition-delay: 380ms; }

@keyframes live-glow {
  0%, 100% { box-shadow: 0 10px 34px rgba(10, 132, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28); }
  50% { box-shadow: 0 12px 48px rgba(10, 132, 255, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.28); }
}

.glow-live {
  animation: live-glow 5.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .glow-live { animation: none; }
}

/* use-case choreography stages */
html.motion-ready .usecase .prompt-card {
  opacity: 0;
  transform: translateY(18px) scale(0.975);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 0.8, 0.26, 1),
    border-color 180ms ease, box-shadow 180ms ease;
}

html.motion-ready .usecase h2,
html.motion-ready .usecase .kicker,
html.motion-ready .usecase .proof-line {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.25, 0.7, 0.25, 1);
}

html.motion-ready .usecase .body-copy,
html.motion-ready .usecase .chips-label,
html.motion-ready .usecase .chips {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.25, 0.7, 0.25, 1);
}

html.motion-ready .usecase .fp {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 560ms cubic-bezier(0.3, 0, 0.2, 1);
}

html.motion-ready .usecase .fn,
html.motion-ready .usecase .flabel {
  opacity: 0;
  transition: opacity 420ms ease;
}

html.motion-ready .usecase .layer {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 460ms ease, transform 460ms cubic-bezier(0.22, 0.8, 0.26, 1);
}

html.motion-ready .usecase .gq-mini {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: 280px 120px;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.9, 0.3, 1.15);
}

html.motion-ready .usecase.uc-head h2,
html.motion-ready .usecase.uc-head .kicker,
html.motion-ready .usecase.uc-head .proof-line { opacity: 1; transform: none; }
html.motion-ready .usecase.uc-head .proof-line { transition-delay: 120ms; }
html.motion-ready .usecase.uc-card .prompt-card { opacity: 1; transform: none; }
html.motion-ready .usecase.uc-card .chips-alt,
html.motion-ready .usecase.uc-card .chips-label { opacity: 1; transform: none; transition-delay: 260ms; }
html.motion-ready .usecase.uc-stem .fp-stem { stroke-dashoffset: 0; }
html.motion-ready .usecase.uc-stem .fn-src { opacity: 0.55; }
html.motion-ready .usecase.uc-stem .gq-mini { opacity: 1; transform: scale(1); }

html.motion-ready .usecase.uc-spread .fp-branch,
html.motion-ready .usecase.uc-spread .fp-ring,
html.motion-ready .usecase.uc-spread .fp-link { stroke-dashoffset: 0; }
html.motion-ready .usecase.uc-spread .fp-branch:nth-of-type(3),
html.motion-ready .usecase.uc-spread .fp-link:nth-of-type(3) { transition-delay: 100ms; }
html.motion-ready .usecase.uc-spread .fp-branch:nth-of-type(4),
html.motion-ready .usecase.uc-spread .fp-link:nth-of-type(4) { transition-delay: 200ms; }
html.motion-ready .usecase.uc-spread .fp-branch:nth-of-type(5),
html.motion-ready .usecase.uc-spread .fp-link:nth-of-type(5) { transition-delay: 300ms; }
html.motion-ready .usecase.uc-spread .fp-link:nth-of-type(6) { transition-delay: 400ms; }
html.motion-ready .usecase.uc-spread .fp-link:nth-of-type(7) { transition-delay: 500ms; }
html.motion-ready .usecase.uc-spread .fp-link:nth-of-type(8) { transition-delay: 600ms; }
html.motion-ready .usecase.uc-spread .fp-link:nth-of-type(9) { transition-delay: 700ms; }
html.motion-ready .usecase.uc-spread .fp-ring-outer { transition-delay: 260ms; }
html.motion-ready .usecase.uc-spread .fn-mid,
html.motion-ready .usecase.uc-spread .fn-tick,
html.motion-ready .usecase.uc-spread .fn-star { opacity: 0.55; transition-delay: 320ms; }
html.motion-ready .usecase.uc-spread .layer-1 { opacity: 1; transform: none; }
html.motion-ready .usecase.uc-spread .layer-2 { opacity: 1; transform: none; transition-delay: 140ms; }
html.motion-ready .usecase.uc-spread .layer-3 { opacity: 1; transform: none; transition-delay: 280ms; }
html.motion-ready .usecase.uc-spread .flabel { opacity: 0.9; transition-delay: 420ms; }

html.motion-ready .usecase.uc-return .fp-conv { stroke-dashoffset: 0; }
html.motion-ready .usecase.uc-return .fp-conv:nth-of-type(7) { transition-delay: 80ms; }
html.motion-ready .usecase.uc-return .fp-conv:nth-of-type(8) { transition-delay: 160ms; }
html.motion-ready .usecase.uc-return .fp-conv:nth-of-type(9) { transition-delay: 240ms; }
html.motion-ready .usecase.uc-return .fp-need-ring { transition-duration: 900ms; }
html.motion-ready .usecase.uc-return .fn-end,
html.motion-ready .usecase.uc-return .fn-core { opacity: 0.85; transition-delay: 260ms; }
html.motion-ready .usecase.uc-copy .body-copy,
html.motion-ready .usecase.uc-copy .chips-label,
html.motion-ready .usecase.uc-copy .chips { opacity: 1; transform: none; }
html.motion-ready .usecase.uc-copy .chips { transition-delay: 60ms; }
html.motion-ready .usecase.uc-copy .body-copy + .body-copy { transition-delay: 140ms; }

@keyframes orbit-turn {
  to { transform: rotate(360deg); }
}

html.motion-ready .usecase.uc-return .orbit-ticks {
  transform-origin: 280px 102px;
  animation: orbit-turn 36s linear infinite;
  animation-play-state: paused;
}

html.motion-ready .usecase.uc-return.in-view .orbit-ticks {
  animation-play-state: running;
}

@media (prefers-reduced-motion: reduce) {
  .usecase .orbit-ticks { animation: none; }
}

/* growth constellation */
html.motion-ready [data-growth] .gq {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: 280px 120px;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.9, 0.3, 1.15);
}

html.motion-ready [data-growth] .gs {
  opacity: 0;
  transition: opacity 600ms ease;
}

html.motion-ready [data-growth] .gp {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 800ms cubic-bezier(0.3, 0, 0.2, 1);
}

html.motion-ready [data-growth].g-core .gq { opacity: 1; transform: scale(1); }
html.motion-ready [data-growth].g-1 .gl-1 .gp { stroke-dashoffset: 0; }
html.motion-ready [data-growth].g-1 .gs-1 { opacity: 0.8; transition-delay: 250ms; }
html.motion-ready [data-growth].g-2 .gl-2 .gp { stroke-dashoffset: 0; }
html.motion-ready [data-growth].g-2 .gs-2 { opacity: 0.65; transition-delay: 250ms; }
html.motion-ready [data-growth].g-3 .gl-3 .gp { stroke-dashoffset: 0; }
html.motion-ready [data-growth].g-3 .gs-3 { opacity: 0.55; transition-delay: 250ms; }
html.motion-ready [data-growth].g-settled .gp { stroke: var(--flow-stroke); }

html.motion-ready [data-growth] .lead,
html.motion-ready [data-growth] .closer,
html.motion-ready [data-growth] .cta-wrap {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.25, 0.7, 0.25, 1);
}

html.motion-ready [data-growth].g-copy .lead,
html.motion-ready [data-growth].g-copy .closer,
html.motion-ready [data-growth].g-copy .cta-wrap { opacity: 1; transform: none; }
html.motion-ready [data-growth].g-copy .lead:nth-of-type(2) { transition-delay: 110ms; }
html.motion-ready [data-growth].g-copy .lead:nth-of-type(3) { transition-delay: 220ms; }
html.motion-ready [data-growth].g-copy .closer { transition-delay: 340ms; }
html.motion-ready [data-growth].g-copy .cta-wrap { transition-delay: 480ms; }

/* vendor page beats reveal */
html.motion-ready .vendor-beats .beat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.25, 0.7, 0.25, 1);
}

html.motion-ready.beats-in .vendor-beats .beat { opacity: 1; transform: none; }
html.motion-ready.beats-in .vendor-beats .beat:nth-child(2) { transition-delay: 140ms; }
html.motion-ready.beats-in .vendor-beats .beat:nth-child(3) { transition-delay: 280ms; }
html.motion-ready.beats-in .vendor-beats .beat:nth-child(4) { transition-delay: 420ms; }
html.motion-ready.beats-in .vendor-beats .beat:nth-child(5) { transition-delay: 560ms; }

/* the reduced-motion resting composition */
@media (prefers-reduced-motion: reduce) {
  html.motion-ready .np,
  html.motion-ready .usecase .fp,
  html.motion-ready [data-growth] .gp { stroke-dashoffset: 0 !important; transition: none !important; }
  html.motion-ready .nn,
  html.motion-ready .usecase .fn,
  html.motion-ready .usecase .flabel,
  html.motion-ready .usecase .layer,
  html.motion-ready .usecase .gq-mini,
  html.motion-ready [data-growth] .gq,
  html.motion-ready [data-growth] .gs,
  html.motion-ready [data-growth] .glabels text,
  html.motion-ready [data-experts] .xhouse,
  html.motion-ready [data-experts] .xlabels text { opacity: 0.8 !important; transform: none !important; transition: none !important; }
  html.motion-ready [data-experts] .xline,
  html.motion-ready [data-handled] .hwl { stroke-dashoffset: 0 !important; transition: none !important; }
  html.motion-ready [data-handled] h2,
  html.motion-ready [data-handled] .paddock-message,
  html.motion-ready [data-handled] .pm-badge { opacity: 1 !important; transform: none !important; transition: none !important; }
  html.motion-ready [data-handled] .hw-labels text,
  html.motion-ready [data-handled] .hw-core { opacity: 0.9 !important; transition: none !important; }
  html.motion-ready [data-handled] .hw-pulse { stroke-dashoffset: 0 !important; transition: none !important; }
  html.motion-ready [data-handled] .hw-core-glow { opacity: 0.3 !important; transition: none !important; }
  html.motion-ready [data-handled] .handled-work { opacity: 0.55 !important; transform: none !important; }
  html.motion-ready .mark,
  html.motion-ready .hero .kicker,
  html.motion-ready .hero h1,
  html.motion-ready .hero .subhead,
  html.motion-ready .hero .promise,
  html.motion-ready .hero .cta-wrap,
  html.motion-ready .usecase h2,
  html.motion-ready .usecase .kicker,
  html.motion-ready .usecase .proof-line,
  html.motion-ready .usecase .prompt-card,
  html.motion-ready .usecase .reply-label,
  html.motion-ready .usecase .pm-reply,
  html.motion-ready .usecase .body-copy,
  html.motion-ready .usecase .chips,
  html.motion-ready .usecase .chips-label,
  html.motion-ready .hero .give-chips,
  html.motion-ready .hero .proof-line,
  html.motion-ready .hero .flow,
  html.motion-ready .vendor-beats .beat,
  html.motion-ready [data-growth] .lead,
  html.motion-ready [data-growth] .closer,
  html.motion-ready [data-experts] h2,
  html.motion-ready [data-experts] .lead,
  html.motion-ready [data-experts] .big-claim,
  html.motion-ready [data-growth] .cta-wrap {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
