:root {
  --demo-brand: #1677e8;
  --demo-brand-dark: #0d4fa3;
  --demo-brand-light: #eaf4ff;
  --demo-success: #15966a;
  --demo-warning: #f2c94c;
  --demo-text: #17212b;
  --demo-muted: #6b7680;
  --demo-border: #d8e2ec;
}

.mcore-demo,
.mcore-demo * {
  box-sizing: border-box;
}

.mcore-demo {
  max-width: 780px;
  margin: 36px auto;
  color: var(--demo-text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.75;
}

.mcore-demo [hidden] {
  display: none !important;
}

.mcore-demo__panel,
.mcore-demo__loading,
.mcore-demo__result,
.mcore-demo__limit-card {
  overflow: hidden;
  border: 1px solid var(--demo-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(19, 50, 39, 0.1);
}

.mcore-demo__header {
  position: relative;
  padding: 32px 42px 26px;
  background: linear-gradient(135deg, #eef6ff 0%, #fff 60%, #eaf4ff 100%);
  text-align: center;
}

.mcore-demo__header > * {
  position: relative;
  z-index: 1;
}

.mcore-demo__header::before,
.mcore-demo__header::after {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(22, 119, 232, 0.08);
  content: "";
}

.mcore-demo__header::before { top: -65px; left: -35px; }
.mcore-demo__header::after { right: -45px; bottom: -75px; }

.mcore-demo__kicker,
.mcore-demo__result-kicker {
  margin: 0 0 12px;
  color: var(--demo-brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.mcore-demo__header h2 {
  margin: 0;
  color: var(--demo-text);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.mcore-demo__header h2 span {
  background: linear-gradient(transparent 65%, #b9dcff 0%);
}

.mcore-demo__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 12px;
  padding: 9px 8px;
  border: 1px solid #b9d5ef;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 7px 20px rgba(22, 74, 126, 0.08);
}

.mcore-demo__fact {
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 4px 8px;
  color: var(--demo-brand-dark);
  font-size: 14px;
  line-height: 1.4;
}

.mcore-demo__fact + .mcore-demo__fact {
  border-left: 1px solid #d9e8f6;
}

.mcore-demo__fact span {
  display: grid;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--demo-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.mcore-demo__fact b {
  font-weight: 800;
}

.mcore-demo__form {
  padding: 42px 52px 48px;
}

.mcore-demo__sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mcore-demo__step + .mcore-demo__step {
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid var(--demo-border);
}

.mcore-demo__step-heading {
  margin-bottom: 16px;
}

.mcore-demo__step-heading > span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  margin-bottom: 7px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--demo-brand-light);
  color: var(--demo-brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mcore-demo__step-heading h3 {
  margin: 0;
  color: var(--demo-text);
  font-size: clamp(19px, 3vw, 24px);
  line-height: 1.45;
}

.mcore-demo__step-help {
  margin: -6px 0 18px;
  color: var(--demo-muted);
  font-size: 13px;
  line-height: 1.7;
}

.mcore-demo__label-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 24px;
  margin-top: 12px;
}

.mcore-demo__counter {
  color: #8a9692;
  font-size: 12px;
}

.mcore-demo__counter b { font-weight: 500; }

.mcore-demo select,
.mcore-demo textarea,
.mcore-demo__other-industry input {
  width: 100%;
  border: 1.5px solid var(--demo-border);
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--demo-text);
  font: inherit;
  font-size: 16px;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.mcore-demo select {
  height: 56px;
  padding: 0 44px 0 16px;
  appearance: none;
}

.mcore-demo__select-wrap {
  position: relative;
}

.mcore-demo__select-wrap::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--demo-muted);
  content: "⌄";
  pointer-events: none;
  transform: translateY(-55%);
}

.mcore-demo textarea {
  min-height: 132px;
  padding: 15px 16px;
  resize: vertical;
}

.mcore-demo select:focus,
.mcore-demo textarea:focus,
.mcore-demo__other-industry input:focus {
  border-color: var(--demo-brand);
  box-shadow: 0 0 0 4px rgba(22, 119, 232, 0.13);
}

.mcore-demo textarea::placeholder { color: #8d9aa7; }

.mcore-demo__other-industry {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid #cfe0f2;
  border-radius: 12px;
  background: #f8fbff;
}

.mcore-demo__other-industry label {
  display: block;
  margin-bottom: 7px;
  color: var(--demo-text);
  font-size: 13px;
  font-weight: 700;
}

.mcore-demo__other-industry input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
}

.mcore-demo__other-industry input::placeholder { color: #8d9aa7; }

.mcore-demo textarea.is-example-filled {
  animation: mcore-example-highlight 0.7s ease-out;
}

@keyframes mcore-example-highlight {
  0% { border-color: var(--demo-brand); box-shadow: 0 0 0 0 rgba(22, 119, 232, 0.38); }
  45% { border-color: var(--demo-brand); box-shadow: 0 0 0 7px rgba(22, 119, 232, 0.14); }
  100% { border-color: var(--demo-border); box-shadow: 0 0 0 0 rgba(22, 119, 232, 0); }
}

.mcore-demo__before-after {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto minmax(0, 1.2fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 15px 17px;
  border: 1px solid #cfe0f2;
  border-radius: 13px;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  text-align: left;
}

.mcore-demo__header .mcore-demo__before-after {
  background: rgba(255, 255, 255, 0.9);
}

.mcore-demo__before-after-item {
  min-width: 0;
}

.mcore-demo__before-after-item b {
  display: block;
  margin-bottom: 4px;
  color: var(--demo-brand-dark);
  font-size: 11px;
  line-height: 1.45;
}

.mcore-demo__before-after-item p {
  margin: 0;
  color: #3c5268;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.mcore-demo__before-after-item--after p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.mcore-demo__before-after-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(22, 74, 126, 0.1);
  color: var(--demo-brand);
  font-size: 17px;
  font-weight: 800;
}

.mcore-demo__examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 4px;
}

.mcore-demo__examples > p {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--demo-text);
  font-size: 13px;
  font-weight: 700;
}

.mcore-demo__examples button {
  width: 100%;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid #bfd7ef;
  border-radius: 11px;
  background: #f7fbff;
  color: #29445f;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  transition: border-color 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.mcore-demo__examples button:hover,
.mcore-demo__examples button:focus-visible,
.mcore-demo__examples button.is-selected {
  border-color: var(--demo-brand);
  outline: none;
  background: var(--demo-brand-light);
  box-shadow: 0 0 0 3px rgba(22, 119, 232, 0.12);
  color: var(--demo-brand-dark);
  transform: translateY(-1px);
}

.mcore-demo__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.mcore-demo__privacy {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 24px 0 20px;
  padding: 13px 15px;
  border-radius: 10px;
  background: #f4f8fc;
  color: var(--demo-muted);
  font-size: 11px;
  line-height: 1.65;
}

.mcore-demo__turnstile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin: 0;
}

.mcore-demo__turnstile .cf-turnstile {
  width: 100%;
  max-width: 420px;
}

.mcore-demo__error {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid #f0c9c6;
  border-radius: 10px;
  background: #fff4f3;
  color: #a43832;
  font-size: 13px;
}

.mcore-demo__submit {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--demo-brand), var(--demo-brand-dark));
  box-shadow: 0 11px 24px rgba(22, 119, 232, 0.24);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  isolation: isolate;
  transition: transform 0.18s, box-shadow 0.18s;
}

.mcore-demo__submit:hover { box-shadow: 0 14px 30px rgba(22, 119, 232, 0.32); transform: translateY(-1px); }
.mcore-demo__submit:focus-visible { outline: 3px solid rgba(22, 119, 232, 0.28); outline-offset: 3px; }
.mcore-demo__submit:disabled { cursor: wait; opacity: 0.7; transform: none; }
.mcore-demo__submit > span:not(.mcore-demo__ripple) { position: relative; z-index: 2; }
.mcore-demo__arrow { font-size: 20px; }
.mcore-demo__submit-note { margin: 12px 0 0; color: var(--demo-muted); font-size: 12px; font-weight: 700; line-height: 1.7; text-align: center; }
.mcore-demo__submit-disclaimer { margin: 5px 0 0; color: #697783; font-size: 11px; font-weight: 600; line-height: 1.6; text-align: center; }
.mcore-demo__limit { margin: 2px 0 0; color: #8b9692; font-size: 10px; text-align: center; }

.mcore-demo__ripple {
  --mcore-ripple-delay: 0ms;
  position: absolute;
  z-index: 1;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.2);
  animation: mcore-water-ripple 1.05s ease-out var(--mcore-ripple-delay) forwards;
}

.mcore-demo__ripple.is-strong {
  border-color: rgba(255, 255, 255, 0.58);
}

@keyframes mcore-water-ripple {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
  18% { opacity: 0.75; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(8); }
}

.mcore-demo__loading {
  min-height: 500px;
  padding: 110px 34px;
  text-align: center;
}

.mcore-demo__loader {
  display: flex;
  width: 92px;
  height: 92px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--demo-brand-light);
}

.mcore-demo__loader span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--demo-brand);
  animation: mcore-bounce 1.2s infinite ease-in-out;
}

.mcore-demo__loader span:nth-child(2) { animation-delay: 0.15s; }
.mcore-demo__loader span:nth-child(3) { animation-delay: 0.3s; }

@keyframes mcore-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-10px); }
}

.mcore-demo__loading h3 { margin: 0; font-size: 23px; }
.mcore-demo__loading p { margin: 10px 0 24px; color: var(--demo-muted); font-size: 14px; }

.mcore-demo__progress {
  max-width: 320px;
  height: 5px;
  overflow: hidden;
  margin: auto;
  border-radius: 99px;
  background: #e3edf7;
}

.mcore-demo__progress span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: var(--demo-brand);
  animation: mcore-progress 2s infinite ease-in-out;
}

@keyframes mcore-progress {
  from { transform: translateX(-110%); }
  to { transform: translateX(250%); }
}

.mcore-demo__result {
  padding: 42px 46px 46px;
  background: linear-gradient(180deg, #f3f8ff 0, #fff 190px);
}

.mcore-demo__result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.mcore-demo__result-kicker { margin-bottom: 4px; color: var(--demo-success); letter-spacing: 0.12em; }
.mcore-demo__result-kicker span { display: inline-grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: var(--demo-success); color: #fff; }
.mcore-demo__result h3 { margin: 0; font-size: 28px; }

.mcore-demo__source-card {
  margin-bottom: 12px;
  padding: 18px 20px;
  border: 1px solid #cfe0f2;
  border-radius: 14px;
  background: #f8fbff;
}

.mcore-demo__source-card p {
  margin: 0 0 6px;
  color: var(--demo-brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mcore-demo__source-card blockquote {
  margin: 0;
  color: var(--demo-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.mcore-demo__transform {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--demo-muted);
  font-size: 11px;
}

.mcore-demo__transform b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--demo-brand-light);
  color: var(--demo-brand);
  font-size: 18px;
}

.mcore-demo__post-card {
  padding: 28px;
  border: 1px solid var(--demo-border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(22, 74, 126, 0.09);
}

.mcore-demo__post-top {
  display: flex;
  gap: 11px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf1ef;
}

.mcore-demo__google-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #e2e8e5;
  border-radius: 50%;
  color: #4285f4;
  font-size: 21px;
  font-weight: 800;
}

.mcore-demo__post-top b,
.mcore-demo__post-top small { display: block; line-height: 1.45; }
.mcore-demo__post-top b { font-size: 13px; }
.mcore-demo__post-top small { color: #87928e; font-size: 10px; }
.mcore-demo__post-card h4 { margin: 22px 0 12px; color: var(--demo-text); font-size: 21px; line-height: 1.5; }
.mcore-demo__post { color: #34475a; font-size: 14px; line-height: 1.95; white-space: pre-wrap; }
.mcore-demo__copy {
  width: 100%;
  min-height: 48px;
  margin-top: 23px;
  padding: 12px;
  border: 1px solid var(--demo-brand);
  border-radius: 10px;
  background: #fff;
  color: var(--demo-brand-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.mcore-demo__copy:hover { background: var(--demo-brand-light); }
.mcore-demo__copy.is-copied { border-color: var(--demo-success); background: #effaf6; color: var(--demo-success); }

.mcore-demo__result-cta {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: 38px 36px 34px;
  border-radius: 18px;
  opacity: 0;
  background: linear-gradient(145deg, #0b3d7a, var(--demo-brand-dark) 52%, #1269c7);
  box-shadow: 0 18px 42px rgba(13, 79, 163, 0.24);
  color: #fff;
  text-align: center;
  transform: translateY(16px);
}

.mcore-demo__result-cta.is-visible {
  animation: mcore-cta-reveal 0.65s ease-out forwards;
}

@keyframes mcore-cta-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.mcore-demo__result-cta-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin: 0 0 15px !important;
  padding: 3px 12px;
  border-radius: 999px;
  background: #fff1bd;
  color: #7a5700 !important;
  font-size: 11px !important;
  font-weight: 800;
}

.mcore-demo__result-cta h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(23px, 4vw, 32px);
  line-height: 1.45;
}

.mcore-demo__result-cta > p:not(.mcore-demo__result-cta-label):not(.mcore-demo__result-cta-fallback) {
  margin: 6px 0;
  color: #e8f3ff;
  font-size: 14px;
  line-height: 1.75;
}

.mcore-demo__result-cta-reason {
  max-width: 540px;
  margin: 22px auto;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
}

.mcore-demo__result-cta-reason b,
.mcore-demo__result-cta-reason span { display: block; }
.mcore-demo__result-cta-reason b { margin-bottom: 4px; color: #ffe69a; font-size: 12px; }
.mcore-demo__result-cta-reason span { color: #edf6ff; font-size: 12px; line-height: 1.65; }

.mcore-demo__result-cta-button {
  position: relative;
  display: flex;
  width: min(100%, 560px);
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  margin: 0 auto;
  padding: 15px 22px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 27, 68, 0.24);
  color: var(--demo-brand-dark) !important;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform 0.18s, box-shadow 0.18s;
}

.mcore-demo__result-cta-button::after {
  position: absolute;
  top: -30%;
  left: -35%;
  width: 24%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(22, 119, 232, 0.16), transparent);
  content: "";
  transform: skewX(-20deg);
}

.mcore-demo__result-cta.is-visible .mcore-demo__result-cta-button::after {
  animation: mcore-cta-shine 1.05s ease-out 0.4s 1 forwards;
}

@keyframes mcore-cta-shine {
  to { left: 120%; }
}

.mcore-demo__result-cta-button:hover,
.mcore-demo__result-cta-button:focus-visible { outline: none; box-shadow: 0 13px 34px rgba(0, 27, 68, 0.3); transform: translateY(-1px); }
.mcore-demo__result-cta-fallback { margin: 18px 0 0; color: #fff; font-size: 14px; font-weight: 700; }
.mcore-demo__result-cta small { display: block; margin-top: 13px; color: #cfe4fb; font-size: 10px; }

.mcore-demo__extras { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.mcore-demo__extra-card { display: flex; gap: 12px; align-items: flex-start; padding: 18px; border: 1px solid var(--demo-border); border-radius: 13px; background: #fff; }
.mcore-demo__extra-icon { font-size: 20px; }
.mcore-demo__extra-card b { display: block; font-size: 12px; }
.mcore-demo__extra-card p { margin: 5px 0 0; color: var(--demo-muted); font-size: 11px; line-height: 1.7; }
.mcore-demo__disclaimer { margin: 18px 0 0; color: #87928e; font-size: 10px; text-align: center; }

.mcore-demo__retry-link {
  display: block;
  min-height: 44px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--demo-muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mcore-demo__retry-link:hover,
.mcore-demo__retry-link:focus-visible { outline: none; color: var(--demo-brand-dark); }

.mcore-demo__limit-card {
  padding: 62px 54px;
  border-color: #f0d77a;
  background: linear-gradient(145deg, #fff8df, #fff 68%);
  text-align: center;
}

.mcore-demo__limit-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--demo-warning);
  box-shadow: 0 12px 30px rgba(178, 132, 0, 0.2);
  color: #6c4b00;
  font-size: 32px;
}

.mcore-demo__limit-card h3 { margin: 0; font-size: clamp(23px, 4vw, 32px); line-height: 1.5; }
.mcore-demo__limit-card > p:not(.mcore-demo__kicker) { max-width: 590px; margin: 20px auto 28px; color: var(--demo-muted); font-size: 15px; }
.mcore-demo__limit-card strong { color: var(--demo-brand-dark); }
.mcore-demo__limit-card .mcore-demo__kicker { color: #8a6200; }
.mcore-demo__cta { display: flex; max-width: 500px; min-height: 62px; align-items: center; justify-content: center; gap: 10px; margin: 0 auto; padding: 14px 20px; border-radius: 13px; background: linear-gradient(135deg, var(--demo-brand), var(--demo-brand-dark)); box-shadow: 0 11px 24px rgba(22, 119, 232, 0.24); color: #fff !important; font-size: 15px; font-weight: 700; text-decoration: none !important; }
.mcore-demo__cta:hover { transform: translateY(-1px); }
.mcore-demo__limit-card .mcore-demo__cta-fallback { margin-bottom: 0; color: var(--demo-text); font-weight: 700; }
.mcore-demo__limit-card small { display: block; margin-top: 13px; color: #87928e; font-size: 11px; }

@media (max-width: 640px) {
  .mcore-demo { margin: 20px auto; }
  .mcore-demo__panel, .mcore-demo__loading, .mcore-demo__result, .mcore-demo__limit-card { border-radius: 18px; }
  .mcore-demo__header { padding: 22px 10px 16px; }
  .mcore-demo__header h2 { font-size: clamp(21px, 5.9vw, 23px); letter-spacing: -0.045em; line-height: 1.4; }
  .mcore-demo__header h2 span { overflow-wrap: normal; white-space: normal; word-break: keep-all; }
  .mcore-demo__facts { gap: 0; margin: 14px 0 10px; padding: 7px 5px; }
  .mcore-demo__fact { min-height: 54px; flex-direction: column; gap: 4px; padding: 3px; font-size: 13px; line-height: 1.3; }
  .mcore-demo__fact span { width: 20px; height: 20px; }
  .mcore-demo__form { padding: 30px 20px 34px; }
  .mcore-demo__step-heading h3 { font-size: 20px; }
  .mcore-demo__before-after { grid-template-columns: 1fr; gap: 3px; padding: 5px 10px; }
  .mcore-demo__before-after-item b { margin-bottom: 0; }
  .mcore-demo__before-after-item p { line-height: 1.5; }
  .mcore-demo__before-after-item--after p { -webkit-line-clamp: 2; }
  .mcore-demo__before-after-arrow { width: 18px; height: 18px; margin: 0 auto; font-size: 13px; transform: rotate(90deg); }
  .mcore-demo__examples { grid-template-columns: 1fr; }
  .mcore-demo__examples button { min-height: 52px; }
  .mcore-demo textarea { min-height: 128px; }
  .mcore-demo__turnstile { overflow: visible; justify-content: center; }
  .mcore-demo__turnstile .cf-turnstile { max-width: 100%; }
  .mcore-demo__result { padding: 28px 16px 30px; }
  .mcore-demo__result-head { display: block; }
  .mcore-demo__source-card { padding: 16px; }
  .mcore-demo__transform { flex-wrap: wrap; gap: 8px; }
  .mcore-demo__post-card { padding: 21px 18px; }
  .mcore-demo__result-cta { padding: 30px 18px 26px; }
  .mcore-demo__result-cta h4 br { display: none; }
  .mcore-demo__result-cta-button { width: 100%; min-height: 66px; padding-inline: 14px; font-size: 15px; }
  .mcore-demo__extras { grid-template-columns: 1fr; }
  .mcore-demo__limit-card { padding: 44px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .mcore-demo *, .mcore-demo *::before, .mcore-demo *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .mcore-demo__ripple { display: none !important; }
  .mcore-demo__result-cta { opacity: 1; transform: none; }
}
