:root {
  color-scheme: dark;
  --bg: #101112;
  --bg-soft: #191b1d;
  --panel: #202326;
  --panel-strong: #292d31;
  --text: #f6f2e9;
  --muted: #aaa49c;
  --muted-2: #7c7770;
  --line: #34383d;
  --cream: #e7e1d7;
  --blue: #8fb8d8;
  --blue-strong: #5e9fd2;
  --blue-dark: #25455f;
  --mint: #a7d8c7;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Work Sans", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

#top,
section {
  scroll-margin-top: 90px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 74% 10%, rgba(94, 159, 210, 0.18), transparent 30rem),
    radial-gradient(circle at 16% 40%, rgba(143, 184, 216, 0.09), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34rem);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 8.6em;
  font-size: clamp(3.65rem, 6.8vw, 6rem);
}

h2 {
  font-size: clamp(2.75rem, 5.4vw, 5.15rem);
}

h3 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.shell {
  width: min(100% - 6rem, 1160px);
  margin-inline: auto;
}

.narrow {
  width: min(100% - 6rem, 880px);
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 17, 18, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  background: url("./meetmap-mark.svg") center / contain no-repeat;
}

.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-link {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-link:hover,
.footer a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--text);
  color: #161819;
}

.button-secondary {
  background: var(--panel-strong);
  color: var(--text);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.98fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  min-height: calc(100vh - 90px);
}

.eyebrow {
  margin-bottom: 1.5rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 36rem;
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: clamp(1.28rem, 2.2vw, 1.8rem);
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.hero-actions {
  margin-top: 1.8rem;
}

.product-surface {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 48%),
    var(--cream);
  border-radius: 1.7rem;
  box-shadow: var(--shadow);
}

.product-surface::before {
  position: absolute;
  inset: auto -10% -23% 8%;
  height: 58%;
  content: "";
  background: repeating-linear-gradient(
    16deg,
    transparent 0 36px,
    rgba(37, 69, 95, 0.18) 37px 42px
  );
  border-radius: 100%;
  opacity: 0.9;
}

.hero-media {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 405px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-stack {
  max-width: 24rem;
  padding-top: 3rem;
}

.hero-stack .match-card {
  animation: card-float 7s ease-in-out infinite;
}

.hero-stack .match-peek-1 {
  animation: card-peek-front 7s ease-in-out infinite;
}

.hero-stack .match-peek-2 {
  animation: card-peek-back 7s ease-in-out infinite;
}

.hero-match-card {
  padding: 1.15rem 1.3rem 1.1rem;
}

.hero-match-card h4 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
}

.hero-match-card .match-body {
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
}

.hero-match-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.7rem;
  border-top: 1px solid #e8dfd2;
  color: var(--blue-strong);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.problem,
.workflow-section,
.split-section {
  background: var(--bg-soft);
}

.problem h2 {
  text-align: center;
}

.prose {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  text-align: center;
}

.prose.compact {
  max-width: 800px;
}

.section-heading {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 620px;
  margin: 1.3rem auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

.stages {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.stage:nth-child(even) .stage-mockup {
  order: -1;
}

.stage-copy .kicker {
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage-copy h3 {
  margin-bottom: 1.2rem;
}

.stage-copy > p {
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.stage-mockup {
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 4vw, 2.8rem);
}

.mockup-window {
  position: relative;
  z-index: 1;
  min-height: 365px;
  padding: 1.2rem;
  background: #fff9ef;
  border: 1px solid rgba(22, 24, 25, 0.12);
  border-radius: 1rem;
  color: #181a1c;
  box-shadow: 0 28px 70px rgba(54, 48, 43, 0.18);
}

.window-dots {
  display: flex;
  gap: 0.35rem;
  padding-bottom: 1rem;
}

.window-dots span {
  width: 0.5rem;
  height: 0.5rem;
  background: #d7d0c6;
  border-radius: 50%;
}

.mockup-window h3 {
  margin-bottom: 1rem;
  color: #181a1c;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.mockup-list article {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 0;
  border-top: 1px solid #e2d9cf;
}

.mockup-list strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
}

.mockup-list p {
  color: #66707a;
  font-size: 0.95rem;
}

.pipeline-mockup {
  padding: clamp(0.55rem, 1.4vw, 0.9rem);
  background: #fff9ef;
}

.pipeline-mockup::before {
  display: none;
}

.pipeline-mockup::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    100deg,
    transparent 34%,
    rgba(143, 184, 216, 0.22) 48%,
    transparent 62%
  );
  transform: translateX(-110%);
  animation: pipeline-scan 6.5s ease-in-out infinite;
}

.pipeline-graphic {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 28px 70px rgba(54, 48, 43, 0.16);
}

.upload-window {
  display: flex;
  flex-direction: column;
}

.upload-list {
  display: grid;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.upload-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.5rem 0.65rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #e2d9cf;
  border-radius: 0.55rem;
  color: #181a1c;
}

.upload-item.is-active {
  background: #ffffff;
  border-color: var(--blue-strong);
  box-shadow: 0 0 0 3px rgba(94, 159, 210, 0.18);
}

.upload-ext {
  padding: 0.18rem 0.4rem;
  background: #e9e0d2;
  border-radius: 0.3rem;
  color: #66707a;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.upload-item.is-active .upload-ext {
  background: var(--blue-dark);
  color: var(--text);
}

.upload-name {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upload-check {
  color: var(--blue-strong);
  font-size: 0.85rem;
  font-weight: 700;
}

.upload-prompt {
  margin-top: 0.9rem;
  padding: 0.75rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--blue-strong);
  border-radius: 0.6rem;
  box-shadow: 0 0 0 3px rgba(94, 159, 210, 0.12);
}

.upload-prompt label {
  display: block;
  margin-bottom: 0.4rem;
  color: #66707a;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.upload-typing {
  margin: 0;
  color: #181a1c;
  font-size: 0.92rem;
  line-height: 1.45;
}

.caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 1px;
  background: var(--blue-strong);
  vertical-align: text-bottom;
  animation: caret-blink 1s steps(2) infinite;
}

@keyframes caret-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes card-peek-front {
  0%,
  100% {
    transform: translate(-50%, 0) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -4px) rotate(-0.45deg);
  }
}

@keyframes card-peek-back {
  0%,
  100% {
    transform: translate(-50%, 0) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -3px) rotate(0.45deg);
  }
}

@keyframes pipeline-scan {
  0%,
  38% {
    transform: translateX(-110%);
  }
  72%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes suggestion-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(94, 159, 210, 0);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(94, 159, 210, 0.12);
  }
}

.upload-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.9rem;
}

.mockup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  background: var(--blue-strong);
  color: #fff;
  border: 0;
  border-radius: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
}

.match-mockup {
  align-items: stretch;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.match-stack {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  padding-top: 3.6rem;
}

.match-peek {
  position: absolute;
  left: 50%;
  display: grid;
  gap: 0.18rem;
  padding: 0.7rem 1.2rem 1.4rem;
  background: #fff9ef;
  border: 1px solid rgba(22, 24, 25, 0.1);
  border-radius: 1rem;
  color: #181a1c;
  box-shadow: 0 18px 40px rgba(54, 48, 43, 0.14);
}

.match-peek-1 {
  top: 1.8rem;
  width: 92%;
  transform: translateX(-50%);
  z-index: 2;
  animation: card-peek-front 7.5s ease-in-out infinite;
}

.match-peek-2 {
  top: 0;
  width: 84%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.78;
  animation: card-peek-back 7.5s ease-in-out infinite;
}

.match-peek-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.match-card {
  position: relative;
  z-index: 3;
  padding: 1.4rem 1.5rem;
  background: #fff9ef;
  border: 1px solid rgba(22, 24, 25, 0.12);
  border-radius: 1rem;
  color: #181a1c;
  box-shadow: 0 32px 70px rgba(54, 48, 43, 0.24);
}

.match-mockup .match-card {
  animation: card-float 7.5s ease-in-out infinite;
}

.match-eyebrow {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--blue-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.match-card h4 {
  margin: 0 0 0.75rem;
  color: #181a1c;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.05rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.match-body {
  margin: 0 0 1.15rem;
  color: #46505a;
  font-size: 0.94rem;
  line-height: 1.5;
}

.match-reasons {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.match-reasons strong,
.match-message strong {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #181a1c;
}

.match-reasons ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #46505a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.match-reasons li + li {
  margin-top: 0.15rem;
}

.match-message {
  display: grid;
  gap: 0.4rem;
  padding: 0.95rem 1.05rem;
  background: var(--panel-strong);
  border-radius: 0.7rem;
}

.match-message strong {
  color: var(--text);
}

.match-message p {
  margin: 0;
  color: #cfc8be;
  font-size: 0.9rem;
  line-height: 1.5;
}

.match-cta {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.85rem 1.1rem;
  background: #181a1c;
  color: var(--text);
  border: 0;
  border-radius: 0.7rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.contact-title {
  margin: 0;
  color: #181a1c;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
}

.contact-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  color: #8a8278;
  font-size: 1.2rem;
  line-height: 1;
}

.channel-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
  margin-bottom: 1rem;
  padding: 0.25rem;
  background: #f2ebdd;
  border: 1px solid #e2d9cf;
  border-radius: 0.65rem;
}

.channel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  background: transparent;
  border: 0;
  border-radius: 0.5rem;
  color: #66707a;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
}

.channel-button.is-active {
  background: var(--blue-strong);
  color: #fff;
  box-shadow: 0 4px 12px rgba(94, 159, 210, 0.28);
}

.channel-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.compose-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #66707a;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compose-field {
  padding: 0.65rem 0.8rem;
  margin-bottom: 0.85rem;
  background: #ffffff;
  border: 1px solid #e2d9cf;
  border-radius: 0.55rem;
  color: #181a1c;
  font-size: 0.92rem;
  line-height: 1.45;
}

.compose-textarea {
  min-height: 5.5rem;
  margin-bottom: 0.6rem;
}

.compose-placeholder {
  color: #b3aa9d;
}

.suggest-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.7rem 0.8rem;
  background: rgba(94, 159, 210, 0.08);
  border: 1px dashed rgba(94, 159, 210, 0.5);
  border-radius: 0.55rem;
  animation: suggestion-glow 4.8s ease-in-out infinite;
}

.suggest-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--blue-strong);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
}

.suggest-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.suggest-preview {
  margin: 0;
  color: #66707a;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.45;
}

.compose-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.organiser-section {
  background: var(--bg);
}

.organiser-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.organiser-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: clamp(1.4rem, 3vw, 1.8rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
}

.organiser-label {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.organiser-card strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.organiser-card p {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.split-heading {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.split-grid article {
  min-height: 350px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.split-grid h2 {
  font-size: clamp(2.45rem, 4.2vw, 4.1rem);
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card h3 {
  margin-top: 1.4rem;
  font-size: clamp(2.25rem, 3.6vw, 3.45rem);
}

.profile-placeholder {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  color: #151719;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 58%),
    var(--blue);
  border: 1px solid rgba(246, 242, 233, 0.16);
  border-radius: 50%;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.split-grid p {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.split-grid .team-role {
  margin-top: 0.45rem;
  color: var(--text);
  font-weight: 700;
}

.team-card p a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--muted-2);
  text-underline-offset: 0.2em;
  transition: text-decoration-color 180ms ease;
}

.team-card p a:hover {
  text-decoration-color: var(--blue);
}

.final-cta {
  text-align: center;
  background: var(--bg);
}

.final-cta h2 {
  max-width: 820px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 620px;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
}

.final-cta .button {
  margin-top: 2rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .hide-small {
    display: none;
  }
}

@media (max-width: 900px) {
  .shell,
  .narrow {
    width: min(100% - 2rem, 1160px);
  }

  .hero,
  .stage,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .stage:nth-child(even) .stage-mockup {
    order: 0;
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 4rem;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    font-size: 1.5rem;
  }

  .nav-actions .button {
    min-height: 2.55rem;
    padding-inline: 1rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 560px) {
  .hero.section {
    padding-block: 3rem 3.75rem;
  }

  .eyebrow {
    margin-bottom: 1.1rem;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 3.45rem);
  }

  .lead {
    margin-top: 1.25rem;
    font-size: 1.12rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions .button {
    min-height: 2.4rem;
    padding-inline: 0.85rem;
    font-size: 0.86rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 1.25rem;
  }

  .hero-actions .button {
    width: fit-content;
  }

  .hero-media {
    min-height: 360px;
    padding: 1.5rem 1.25rem;
    border-radius: 1.25rem;
  }

  .hero-stack {
    max-width: 100%;
    padding-top: 2.6rem;
  }

  .problem h2,
  .section-heading,
  .prose {
    text-align: left;
  }

  .stage-mockup {
    padding: 1rem;
    border-radius: 1.25rem;
  }

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

  .mockup-window {
    min-height: 0;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
  }
}

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

  .caret,
  .hero-stack .match-card,
  .hero-stack .match-peek-1,
  .hero-stack .match-peek-2,
  .match-mockup .match-card,
  .match-peek-1,
  .match-peek-2,
  .pipeline-mockup::after,
  .suggest-row {
    animation: none;
  }
}
