*(Wait, the prompt says START_OF_FILENAME.EXT. So `[START_OF_style.css]`)*.

[START_OF_style.css]
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --motion-bg: #f8fafc;
  --motion-surface: #ffffff;
  --motion-tone: #0284c7;
  --motion-tone-hover: #0369a1;
  --motion-ink: #0f172a;
  --motion-ink-soft: #334155;
  --motion-edge: #e2e8f0;
  --motion-shadow: rgba(0, 0, 0, 0.08);
  --motion-gradient: linear-gradient(135deg, #0ea5e9, #0284c7);
  --motion-highlight: #bae6fd;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--motion-bg);
  color: var(--motion-ink);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: var(--motion-tone);
  color: var(--motion-surface);
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  border-radius: 2px;
}

.action-trigger:hover {
  background-color: var(--motion-tone-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px var(--motion-shadow);
}

.nav-link {
  color: var(--motion-ink-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.limit-width {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-area {
  background-color: var(--motion-ink);
  color: var(--motion-surface);
  border-top: 8px solid var(--motion-tone);
}

/* Base resets for list items in custom blocks */
.info-flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}