:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #565b57;
  --paper: #f7f8f3;
  --surface: #ffffff;
  --line: #d8ddd5;
  --teal: #008f83;
  --mint: #cfeee4;
  --coral: #f36c4f;
  --yellow: #f0bd35;
  --forest: #1f5c48;
  --shadow: 0 22px 70px rgba(20, 20, 20, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  background: rgba(247, 248, 243, 0.92);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand-symbol {
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.brand-symbol img {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 18px rgba(20, 20, 20, 0.16));
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  background: #eef3ec;
  border-bottom: 1px solid var(--line);
}

#signalCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.62fr);
  gap: 56px;
  align-items: center;
  width: min(1160px, calc(100% - 48px));
  min-height: 86svh;
  margin: 0 auto;
  padding: 118px 0 54px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 92px;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 32px;
  color: #272a27;
  font-size: 23px;
  line-height: 1.36;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.54);
}

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

.hero-visual {
  display: grid;
  gap: 16px;
}

.hero-photo,
.photo-strip figure,
.growth-media {
  margin: 0;
}

.hero-photo {
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo img,
.photo-strip img,
.growth-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  aspect-ratio: 3 / 2;
}

.signal-board {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(20, 20, 20, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signal-board::before {
  position: absolute;
  top: 0;
  left: 22px;
  width: 38%;
  height: 3px;
  background: var(--teal);
  content: "";
  animation: decisionScan 4.8s ease-in-out infinite;
}

.board-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.board-header {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.board-header strong {
  color: var(--ink);
}

.decision-board {
  display: grid;
  gap: 14px;
}

.decision-columns {
  border-top: 1px solid rgba(20, 20, 20, 0.1);
}

.decision-column {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.decision-label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.18;
}

.decision-column p,
.decision-example p {
  margin: 0;
  color: #2d332f;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.38;
}

.decision-column.accent-teal .decision-label {
  color: var(--teal);
}

.decision-column.accent-yellow .decision-label {
  color: #8a6100;
}

.decision-column.accent-coral .decision-label {
  color: #b33e27;
}

.decision-example {
  padding: 14px;
  background: #101614;
  color: var(--paper);
  border-radius: 6px;
}

.decision-example span {
  display: block;
  margin-bottom: 8px;
  color: #a6d8cf;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.decision-example p {
  color: var(--paper);
}

.decision-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.decision-actions span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background: rgba(0, 143, 131, 0.1);
  border: 1px solid rgba(0, 143, 131, 0.22);
  border-radius: 6px;
  color: #173d38;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

meter {
  width: 128px;
  height: 12px;
}

meter::-webkit-meter-bar {
  background: #e6e7df;
  border: 0;
  border-radius: 0;
}

meter::-webkit-meter-optimum-value {
  background: var(--teal);
}

@keyframes decisionScan {
  0%,
  100% {
    width: 34%;
    opacity: 0.7;
  }

  50% {
    width: calc(100% - 44px);
    opacity: 1;
  }
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-strip div {
  min-height: 118px;
  padding: 24px 32px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 5px;
  font-size: 32px;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.case-section {
  background: #101614;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 56px;
  align-items: center;
}

.case-copy p {
  color: #d9e6da;
  font-size: 18px;
}

.case-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

.case-link:hover {
  transform: translateY(-1px);
}

.case-card {
  display: grid;
  gap: 14px;
}

.case-screen {
  min-height: 390px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.9) 72%),
    url("./assets/hero-night-out-site.webp") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-badge {
  width: fit-content;
  padding: 7px 10px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-screen strong {
  font-size: 34px;
  line-height: 1;
}

.case-screen p {
  max-width: 290px;
  margin-bottom: 0;
  color: #edf3ee;
}

.case-signal {
  display: flex;
  gap: 7px;
  align-items: end;
  min-height: 46px;
}

.case-signal span {
  width: 14px;
  min-height: 14px;
  background: var(--teal);
  border-radius: 999px;
}

.case-signal span:nth-child(2) {
  min-height: 24px;
  background: var(--mint);
}

.case-signal span:nth-child(3) {
  min-height: 36px;
  background: var(--coral);
}

.case-signal span:nth-child(4) {
  min-height: 28px;
  background: var(--yellow);
}

.case-signal span:nth-child(5) {
  min-height: 42px;
  background: var(--paper);
}

.case-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.case-stat-grid div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.case-stat-grid strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.case-stat-grid span {
  color: #d9e6da;
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: 92px 0;
}

.section > *,
.contact-section {
  width: min(1160px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.two-column,
.section-heading,
.process-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.stacked-copy p,
.section-heading > p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.profiles-section,
.semiotic-section,
.insights-section,
.offers-section,
.packages-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-section {
  background: #edf3ee;
  border-top: 1px solid var(--line);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.photo-strip figure {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.photo-strip img {
  aspect-ratio: 1 / 1;
}

.photo-strip figcaption,
.growth-media figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.photo-strip figcaption {
  padding: 15px 16px 17px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.profile-card,
.growth-grid article,
.offer-list article,
.platform-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-card {
  min-height: 196px;
  padding: 21px;
  border-top: 6px solid var(--teal);
}

.sign-grid .profile-card {
  min-height: 230px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.insight-card {
  min-height: 440px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 24px;
  overflow: hidden;
  background: #fbfcf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  opacity: 0.72;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.insight-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.insight-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.insight-card-header strong {
  flex: 0 0 auto;
  color: var(--forest);
  font-size: 14px;
}

.chart-label {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-card > p {
  margin-bottom: 0;
  color: var(--muted);
}

.heatmap-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  min-height: 190px;
}

.heatmap-chart span {
  display: block;
  min-height: 30px;
  background: #eef3ec;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.heatmap-chart .warm {
  background: #ffe6a1;
}

.heatmap-chart .hot {
  background: var(--coral);
}

.is-visible .heatmap-chart span {
  animation: pulseCell 1700ms ease both;
}

.is-visible .heatmap-chart span:nth-child(3n) {
  animation-delay: 140ms;
}

.is-visible .heatmap-chart span:nth-child(4n) {
  animation-delay: 260ms;
}

.rhythm-chart {
  height: 220px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  padding-top: 18px;
  border-bottom: 1px solid var(--line);
}

.rhythm-chart span {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100%;
}

.rhythm-chart span::before {
  content: "";
  display: block;
  height: var(--level);
  min-height: 28px;
  background: linear-gradient(180deg, var(--teal), var(--mint));
  border: 1px solid rgba(0, 143, 131, 0.25);
  border-radius: 6px 6px 0 0;
  transform: scaleY(0.2);
  transform-origin: bottom;
}

.is-visible .rhythm-chart span::before {
  animation: insightBar 900ms ease forwards;
}

.rhythm-chart span:nth-child(2)::before {
  animation-delay: 90ms;
}

.rhythm-chart span:nth-child(3)::before {
  animation-delay: 180ms;
}

.rhythm-chart span:nth-child(4)::before {
  animation-delay: 270ms;
}

.rhythm-chart span:nth-child(5)::before {
  animation-delay: 360ms;
}

.rhythm-chart b {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.funnel-chart {
  display: grid;
  gap: 12px;
  min-height: 220px;
  align-content: center;
}

.funnel-chart div {
  width: var(--size);
  min-width: 42%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 7px;
  transform: scaleX(0.18);
  transform-origin: left center;
}

.funnel-chart div:nth-child(2) {
  background: var(--forest);
}

.funnel-chart div:nth-child(3) {
  background: var(--teal);
}

.funnel-chart div:nth-child(4) {
  background: var(--coral);
}

.is-visible .funnel-chart div {
  animation: insightBar 780ms ease forwards;
}

.funnel-chart div:nth-child(2) {
  animation-delay: 120ms;
}

.funnel-chart div:nth-child(3) {
  animation-delay: 240ms;
}

.funnel-chart div:nth-child(4) {
  animation-delay: 360ms;
}

.funnel-chart span,
.funnel-chart b {
  font-size: 14px;
}

.readiness-chart {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 220px;
}

.score-ring {
  width: 156px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #fbfcf8 0 55%, transparent 56%),
    conic-gradient(var(--teal) 0deg, var(--teal) 0deg, #e5ebe3 0deg 360deg);
  border-radius: 50%;
}

.is-visible .score-ring {
  animation: readinessSweep 1100ms ease forwards;
}

.score-ring span {
  font-size: 42px;
  font-weight: 900;
}

.readiness-chart ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.readiness-chart li {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.readiness-chart meter {
  width: 100%;
}

@keyframes insightBar {
  to {
    transform: scale(1);
  }
}

@keyframes pulseCell {
  0% {
    transform: scale(0.92);
    opacity: 0.68;
  }

  55% {
    transform: scale(1.04);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes readinessSweep {
  to {
    background:
      radial-gradient(circle at center, #fbfcf8 0 55%, transparent 56%),
      conic-gradient(var(--teal) 0deg 295deg, #e5ebe3 295deg 360deg);
  }
}

.profile-card p,
.growth-grid p,
.offer-list p,
.process-list p,
.platform-panel li {
  color: var(--muted);
}

.accent-coral {
  border-top-color: var(--coral);
}

.accent-yellow {
  border-top-color: var(--yellow);
}

.accent-ink {
  border-top-color: var(--ink);
}

.platform-section,
.growth-section {
  background: var(--paper);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span,
.offer-list span {
  color: var(--teal);
  font-weight: 900;
}

.platform-panel {
  position: sticky;
  top: 92px;
  padding: 28px;
  background: #18201c;
  color: var(--paper);
}

.platform-panel ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.platform-panel li {
  padding: 12px 0;
  color: #d9e6da;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.growth-grid,
.offer-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.growth-media {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.growth-media img {
  aspect-ratio: 3 / 1.18;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.growth-grid article,
.offer-list article {
  min-height: 220px;
  padding: 24px;
}

.offer-list article {
  background: #fbfcf8;
}

.packages-section {
  background: #edf3ee;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.package-card {
  min-height: 264px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-card h3,
.package-card p {
  margin-bottom: 0;
}

.package-card p {
  color: var(--muted);
}

.package-name {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-price {
  width: fit-content;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 7px;
  font-size: 14px;
  line-height: 1;
}

.featured-package {
  border-color: rgba(0, 143, 131, 0.35);
  box-shadow: 0 18px 42px rgba(0, 143, 131, 0.12);
}

.contact-section {
  padding: 86px 0;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bfc8bf;
  border-radius: 8px;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 143, 131, 0.17);
}

textarea {
  resize: vertical;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #eef3ec;
}

.thanks-shell {
  width: min(760px, 100%);
}

.thanks-panel {
  margin-top: 28px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  font-size: 48px;
}

.thanks-panel p {
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  padding: 28px 40px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .two-column,
  .section-heading,
  .process-layout,
  .case-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 30px;
    padding-top: 104px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lede {
    font-size: 20px;
  }

  .proof-strip,
  .profile-grid,
  .photo-strip,
  .insight-grid,
  .growth-grid,
  .offer-list,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .readiness-chart {
    grid-template-columns: 1fr;
  }

  .platform-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 18px;
  }

  .hero-inner,
  .section > *,
  .contact-section {
    width: min(100% - 32px, 1160px);
  }

  .hero-inner {
    min-height: auto;
    padding-bottom: 36px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 19px;
  }

  .hero-lede,
  .stacked-copy p,
  .section-heading > p,
  .contact-copy p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .signal-board {
    padding: 18px;
  }

  .signal-board::before {
    left: 18px;
  }

  .board-header {
    align-items: start;
  }

  .decision-column {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .decision-actions {
    grid-template-columns: 1fr;
  }

  .case-screen {
    min-height: 330px;
  }

  .case-stat-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .profile-grid,
  .photo-strip,
  .insight-grid,
  .growth-grid,
  .offer-list,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .insight-card {
    min-height: auto;
    padding: 20px;
  }

  .insight-card-header {
    display: grid;
  }

  .rhythm-chart,
  .funnel-chart,
  .readiness-chart {
    min-height: 190px;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .contact-section {
    padding: 62px 0;
  }

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

  .site-footer {
    display: grid;
    justify-content: start;
    padding: 24px 18px;
  }
}

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

  .button:hover {
    transform: none;
  }

  .signal-board::before {
    animation: none;
  }

  .insight-card,
  .rhythm-chart span::before,
  .funnel-chart div {
    transform: none;
    transition: none;
  }

  .is-visible .heatmap-chart span,
  .is-visible .rhythm-chart span::before,
  .is-visible .funnel-chart div,
  .is-visible .score-ring {
    animation: none;
  }
}
