:root {
  --cream: #fbf4e8;
  --porcelain: #fffaf3;
  --ink: #152126;
  --muted: #5e6a6d;
  --muted-strong: #39464b;
  --blush: #d98d72;
  --sage: #97a88f;
  --butter: #f1ddb0;
  --sky: #c7dde4;
  --line: rgba(21, 33, 38, 0.1);
  --line-strong: rgba(21, 33, 38, 0.16);
  --panel: rgba(255, 250, 243, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.76);
  --shadow: 0 28px 70px rgba(21, 33, 38, 0.12);
  --deep-shadow: 0 34px 90px rgba(21, 33, 38, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1240px, calc(100vw - 32px));
  --line-height-tight: 1.02;
  --line-height-body: 1.65;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 141, 114, 0.22), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(199, 221, 228, 0.26), transparent 22%),
    radial-gradient(circle at 82% 28%, rgba(151, 168, 143, 0.18), transparent 18%),
    linear-gradient(180deg, #fdf8f1 0%, var(--cream) 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-shell {
  margin-bottom: 96px;
}

.shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.75;
  z-index: 0;
}

.shape-one {
  width: 180px;
  height: 180px;
  top: 128px;
  right: 36px;
  border-radius: 54px;
  background: linear-gradient(145deg, rgba(241, 221, 176, 0.7), rgba(217, 141, 114, 0.5));
  transform: rotate(14deg);
}

.shape-two {
  width: 140px;
  height: 140px;
  left: -30px;
  top: 520px;
  border-radius: 999px;
  background: rgba(151, 168, 143, 0.22);
}

.shape-three {
  width: 200px;
  height: 120px;
  right: 60px;
  top: 1200px;
  border-radius: 999px 999px 36px 36px;
  background: rgba(199, 221, 228, 0.28);
  transform: rotate(-12deg);
}

.shape-four {
  width: 100px;
  height: 100px;
  left: 5%;
  top: 1800px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(217, 141, 114, 0.25), rgba(241, 221, 176, 0.35));
}

.shape-five {
  width: 240px;
  height: 160px;
  right: -40px;
  top: 2400px;
  border-radius: 999px;
  background: rgba(151, 168, 143, 0.15);
  transform: rotate(8deg);
}

.shape-six {
  width: 90px;
  height: 90px;
  left: 8%;
  top: 3000px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(199, 221, 228, 0.3), rgba(241, 221, 176, 0.2));
  transform: rotate(-18deg);
}

.shape-seven {
  width: 160px;
  height: 160px;
  right: 10%;
  top: 3600px;
  border-radius: 999px;
  background: rgba(241, 221, 176, 0.2);
}

.shape-eight {
  width: 120px;
  height: 80px;
  left: 3%;
  top: 4200px;
  border-radius: 999px 999px 24px 24px;
  background: rgba(217, 141, 114, 0.15);
  transform: rotate(12deg);
}

.site-header,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 22px 0 12px;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: 14px 14px;
  gap: 5px;
  align-items: end;
}

.brand-mark span {
  display: block;
  border-radius: 7px;
}

.brand-mark span:first-child {
  height: 14px;
  background: linear-gradient(135deg, var(--blush), #ebb094);
}

.brand-mark span:last-child {
  height: 20px;
  background: linear-gradient(135deg, var(--sage), #d5ddcb);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 6px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blush), var(--butter));
  opacity: 0;
  transform: scaleX(0.75);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(21, 33, 38, 0.18);
  outline-offset: 4px;
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.button-contrast {
  color: var(--ink);
  background: var(--butter);
}

.button-dark-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: flex-start;
}

.hero-photo-col {
  position: relative;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
}

.hero-text-col .eyebrow {
  margin: 0;
}

.hero-text-col .display {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.hero-text-col .lead {
  margin: 0;
  max-width: 50ch;
  font-size: 1.1rem;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--deep-shadow);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(21, 33, 38, 0.08);
  pointer-events: none;
}

/* Product preview section */
.product-preview-header {
  max-width: 580px;
  margin-bottom: 48px;
}

.product-preview-header .section-title {
  margin: 8px 0 16px;
}

.product-preview-header .lead {
  margin: 0;
  font-size: 1.05rem;
}

.product-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: start;
}

.product-queue {
  padding: 28px;
}

.product-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-cards .dashboard-card {
  padding: 24px;
}

.photo-circle {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid var(--porcelain);
  box-shadow: 0 4px 16px rgba(21, 33, 38, 0.1);
  flex-shrink: 0;
}

.photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-circle-lg {
  width: 96px;
  height: 96px;
}

.photo-strip {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
  position: relative;
}

.photo-strip .photo-circle {
  width: 88px;
  height: 88px;
  transition: transform 300ms ease;
}

.photo-strip .photo-circle:hover {
  transform: scale(1.08);
}

.photo-break {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 320px;
  overflow: hidden;
  border-radius: 0;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 244, 232, 0.3) 0%, transparent 20%, transparent 80%, rgba(251, 244, 232, 0.3) 100%);
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.photo-break-overlay blockquote {
  max-width: 600px;
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(21, 33, 38, 0.08);
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  text-align: center;
  box-shadow: 0 12px 40px rgba(21, 33, 38, 0.12);
}

.hero-photo-col,
.hero-text-col,
.stats-strip,
.story-grid,
.quote-band,
.contact-grid,
.coverage-grid,
.switch-steps,
.migration-sources {
  opacity: 0;
  animation: fade-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-text-col {
  animation-delay: 90ms;
}

.stats-strip {
  animation-delay: 150ms;
}

.story-grid {
  animation-delay: 210ms;
}

.quote-band {
  animation-delay: 270ms;
}

.contact-grid {
  animation-delay: 330ms;
}

.coverage-grid {
  animation-delay: 180ms;
}

.switch-steps {
  animation-delay: 240ms;
}

.migration-sources {
  animation-delay: 300ms;
}

.panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.panel-large {
  padding: 44px;
  background:
    radial-gradient(circle at 92% 8%, rgba(241, 221, 176, 0.34), transparent 20%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 243, 0.88));
  position: relative;
  overflow: hidden;
}

.panel-large::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 36px;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(217, 141, 114, 0.14), rgba(241, 221, 176, 0.28));
  transform: rotate(10deg);
}

.eyebrow,
.metric-label,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Space Grotesk", sans-serif;
}

.eyebrow {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 33, 38, 0.06);
  margin: 0 0 18px;
}

.eyebrow-dark {
  color: rgba(248, 244, 238, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.display,
.section-title,
.signal-card h2,
.metric-card h2,
.story-card h2,
.dashboard-card h2,
.dashboard-card h3,
.final-panel h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.display,
.section-title,
.final-panel h2 {
  font-family: "Fraunces", serif;
  line-height: 0.93;
  text-wrap: balance;
}

.display {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  margin-bottom: 18px;
}

.section-title {
  max-width: 18ch;
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  margin-bottom: 18px;
}

.lead,
.story-card p,
.metric-card p,
.dashboard-card p,
.final-copy {
  margin: 0;
  color: var(--muted);
  line-height: var(--line-height-body);
}

.lead {
  max-width: 58ch;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.hero-note {
  margin: -8px 0 24px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.signal-grid,
.stats-strip,
.dashboard-grid,
.quote-grid,
.contact-grid,
.story-grid,
.play-grid {
  display: grid;
  gap: 16px;
}

.signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-card {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Standalone signal strip (after hero) */
.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.signal-card-standalone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
}

.signal-card-standalone h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  margin: 0 0 8px;
}

.signal-card-standalone p {
  margin: 0;
}

.signal-card h2,
.metric-card h2,
.story-card h2,
.dashboard-card h2,
.dashboard-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hero-dashboard {
  padding: 28px;
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top left, rgba(241, 221, 176, 0.3), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 250, 243, 0.88));
}

.section-label {
  justify-content: space-between;
  width: 100%;
}

.dashboard-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 33, 38, 0.08);
}

.dashboard-card-accent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 243, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.small-copy {
  font-size: 0.9rem;
}

.meter {
  height: 12px;
  margin: 12px 0 8px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--blush),
    #ecc2ae 34%,
    var(--butter) 68%,
    var(--sage) 84%,
    rgba(21, 33, 38, 0.08) 84%
  );
}

.dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-queue {
  display: grid;
  gap: 10px;
}

.mini-queue-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(21, 33, 38, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.mini-queue-row h3 {
  margin: 0 0 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  letter-spacing: -0.03em;
}

.mini-queue-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mini-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.mini-status-critical {
  color: #8e4a3b;
  background: rgba(217, 141, 114, 0.18);
}

.mini-status-warning {
  color: #7f6230;
  background: rgba(241, 221, 176, 0.38);
}

.mini-status-info {
  color: #45626d;
  background: rgba(199, 221, 228, 0.42);
}

.toy-blocks {
  display: flex;
  gap: 10px;
  align-items: end;
  margin-top: 14px;
}

.handoff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.handoff-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(21, 33, 38, 0.08);
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.toy-blocks span {
  display: block;
  border-radius: 14px 14px 8px 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.toy-blocks span:nth-child(1) {
  width: 36px;
  height: 42px;
  background: linear-gradient(180deg, #ebb094, var(--blush));
}

.toy-blocks span:nth-child(2) {
  width: 54px;
  height: 58px;
  background: linear-gradient(180deg, #d4e0d0, var(--sage));
}

.toy-blocks span:nth-child(3) {
  width: 44px;
  height: 32px;
  background: linear-gradient(180deg, #f6e8c7, var(--butter));
}

.stats-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 243, 0.84));
  box-shadow: var(--shadow);
}

.metric-card,
.story-card {
  padding: 32px;
}

.stats-strip .metric-card {
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stats-strip .metric-card + .metric-card {
  border-left: 1px solid var(--line);
}

.story-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 32px;
}

.story-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.story-stack {
  display: grid;
  gap: 24px;
}

.story-stack .story-card,
.quote-grid .story-card {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.narrative-panel {
  padding: 32px;
}

.story-card-photo {
  position: relative;
}

.story-card-photo .photo-circle {
  position: absolute;
  top: -20px;
  right: 24px;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 32px;
}

.quote-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(199, 221, 228, 0.22), rgba(255, 250, 243, 0.82) 44%, rgba(241, 221, 176, 0.2)),
    rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.quote-panel:hover {
  border-color: rgba(21, 33, 38, 0.16);
  box-shadow: 0 22px 48px rgba(21, 33, 38, 0.14);
}

.quote-panel p {
  margin: 0;
}

.quote-copy {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.18;
}

.quote-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-panel {
  padding: 40px;
  display: grid;
  gap: 24px;
}

.process-panel .section-title {
  max-width: 11ch;
  margin-bottom: 0;
}

.process-copy {
  max-width: 60ch;
  color: var(--muted);
  line-height: var(--line-height-body);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(21, 33, 38, 0.08);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 33, 38, 0.08);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--muted-strong);
}

.process-step h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.process-step p {
  color: var(--muted);
  line-height: var(--line-height-body);
}

.contact-grid {
  grid-template-columns: 1fr;
}

.final-panel {
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 16%, rgba(241, 221, 176, 0.18), transparent 18%),
    linear-gradient(135deg, #152126, #243238);
  color: #f8f4ee;
  box-shadow: var(--deep-shadow);
}

.final-copy {
  color: rgba(248, 244, 238, 0.82);
  max-width: 56ch;
}

.final-panel .section-title {
  margin-bottom: 18px;
}

.final-panel .hero-actions {
  margin-top: 24px;
  margin-bottom: 0;
  gap: 14px;
}

/* Persona lines in hero */
.persona-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--muted-strong);
}

.persona-lines span {
  display: block;
}

.persona-lines strong {
  font-weight: 700;
  color: var(--ink);
}

/* Coverage section */
.coverage-header {
  max-width: 580px;
  margin-bottom: 48px;
}

.coverage-header .section-title {
  margin: 8px 0 16px;
}

.coverage-header .lead {
  margin: 0;
  font-size: 1.05rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.coverage-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coverage-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  margin: 0;
  letter-spacing: -0.03em;
}

.coverage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.coverage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-blush { background: var(--blush); }
.dot-sage { background: var(--sage); }
.dot-butter { background: var(--butter); }
.dot-sky { background: var(--sky); }
.dot-coral { background: #c45a42; }
.dot-amber { background: #c4893e; }

.framework-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.fw-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(21, 33, 38, 0.08);
  color: var(--muted-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Switch / migration section */
.switch-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.switch-step {
  padding: 28px;
}

.switch-step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  margin: 0 0 8px;
}

.switch-step p {
  margin: 0;
  color: var(--muted);
  line-height: var(--line-height-body);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(217, 141, 114, 0.14);
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blush);
  margin-bottom: 14px;
}

/* Migration sources */
.migration-sources {
  margin-bottom: 48px;
}

.sources-title {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 8px;
}

.sources-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 28px;
  max-width: 560px;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.source-group h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 12px;
}

.source-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.source-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.58);
}

.source-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  color: white;
}

.si-saas { background: linear-gradient(135deg, var(--blush), #ebb094); }
.si-legacy { background: linear-gradient(135deg, #8b7355, #a68b6b); }
.si-manual { background: linear-gradient(135deg, var(--sage), #b5c4ad); }

.source-name {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.source-detail {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1px;
}

/* Session box CTA */
.session-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background:
    radial-gradient(circle at top left, rgba(241, 221, 176, 0.3), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 250, 243, 0.88));
}

.session-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.session-box p {
  margin: 0;
  color: var(--muted);
  line-height: var(--line-height-body);
  max-width: 520px;
}

.session-box .button {
  flex-shrink: 0;
}

[data-pretext] {
  display: block;
}

@media (max-width: 1439px) {
  :root {
    --container: min(1180px, calc(100vw - 32px));
  }
}

@media (max-width: 1024px) {
  .section-shell {
    margin-bottom: 64px;
  }

  .nav-shell,
  .hero,
  .stats-strip,
  .story-grid,
  .quote-band,
  .quote-grid,
  .contact-grid,
  .signal-grid,
  .signal-strip,
  .dashboard-grid,
  .product-preview-grid,
  .coverage-grid,
  .switch-steps,
  .sources-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 40px;
  }

  .hero-photo-frame {
    aspect-ratio: 4 / 3;
  }

  .nav-shell {
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .nav-cta {
    width: 100%;
  }

  .panel-large,
  .metric-card,
  .story-card,
  .narrative-panel,
  .quote-panel,
  .final-panel {
    padding: 24px;
  }

  .stats-strip .metric-card {
    padding: 0;
  }

  .stats-strip .metric-card + .metric-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  .shape-four,
  .shape-five,
  .shape-six,
  .shape-seven,
  .shape-eight {
    opacity: 0.4;
  }

  .shape-one {
    right: 18px;
  }

  .mini-queue-row {
    grid-template-columns: 1fr;
  }

  .photo-break {
    height: 240px;
  }

  .photo-strip .photo-circle {
    width: 64px;
    height: 64px;
  }

  .story-card-photo .photo-circle {
    position: static;
    margin-bottom: 12px;
  }

  .session-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100vw - 20px, 740px);
  }

  .section-shell {
    margin-bottom: 48px;
  }

  .site-header {
    padding-top: 16px;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto;
  }

  .display {
    font-size: clamp(2.7rem, 12vw, 4.7rem);
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 3.4rem);
  }

  .final-panel .section-title {
    line-height: 1;
    margin-bottom: 22px;
  }

  .final-panel .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 26px;
  }

  .lead {
    font-size: 1rem;
  }

  .shape {
    opacity: 0.42;
  }

  .process-panel {
    padding: 24px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .photo-break {
    height: 200px;
  }

  .photo-strip {
    flex-wrap: wrap;
    gap: 16px;
    padding: 32px 0;
  }

  .photo-strip .photo-circle {
    width: 56px;
    height: 56px;
  }

  .photo-circle {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 375px) {
  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-photo-col,
  .hero-text-col,
  .stats-strip,
  .story-grid,
  .quote-band,
  .contact-grid,
  .coverage-grid,
  .switch-steps,
  .migration-sources {
    opacity: 1;
  }
}
