/* Marketing site — thankutext.com public pages only. Do not load on jQM app. */

:root {
  --mk-blue: #1a6bb5;
  --mk-blue-deep: #0d3d6b;
  --mk-blue-soft: #d6e8f7;
  --mk-green: #00a86b;
  --mk-green-bright: #12c48a;
  --mk-ink: #142033;
  --mk-muted: #5a6b7d;
  --mk-line: rgba(20, 32, 51, 0.12);
  --mk-surface: #eef4fa;
  --mk-white: #ffffff;
  --mk-shadow: 0 18px 50px rgba(13, 61, 107, 0.14);
  --mk-radius: 18px;
  --mk-font-display: "Raleway", "Source Sans Pro", "Helvetica Neue", sans-serif;
  --mk-font-body: "Source Sans Pro", "Raleway", "Helvetica Neue", sans-serif;
  --mk-font-accent: "Montserrat Alternates", "Raleway", sans-serif;
  --mk-max: 1120px;
  --mk-nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.mk-body {
  margin: 0;
  color: var(--mk-ink);
  font-family: var(--mk-font-body);
  font-size: 17px;
  line-height: 1.55;
  background: var(--mk-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--mk-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--mk-green);
}

.mk-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--mk-ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.mk-skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.mk-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mk-main {
  flex: 1;
}

.mk-container {
  width: min(100% - 2rem, var(--mk-max));
  margin-inline: auto;
}

/* —— Nav —— */
.mk-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--mk-nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.mk-nav.is-scrolled {
  border-bottom-color: var(--mk-line);
  box-shadow: 0 8px 24px rgba(13, 61, 107, 0.06);
}

.mk-nav__inner {
  position: relative;
  width: min(100% - 1.25rem, var(--mk-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--mk-nav-h);
}

.mk-nav__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  grid-column: 2;
  justify-self: center;
}

.mk-nav__brand img {
  height: 36px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.mk-nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem 1.1rem;
  align-items: center;
}

.mk-nav__links a:not(.mk-btn) {
  color: var(--mk-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.mk-nav__links a:not(.mk-btn):hover,
.mk-nav__links a:not(.mk-btn).is-active {
  color: var(--mk-blue);
}

.mk-nav__links a.mk-btn--primary,
.mk-nav__links a.mk-btn--primary:hover {
  color: #fff;
}

.mk-nav__mobile-cta {
  display: none;
}

.mk-nav__actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.mk-nav__toggle {
  display: inline-flex;
  flex-shrink: 0;
  grid-column: 3;
  justify-self: end;
  margin-left: 0;
  border: 1px solid var(--mk-line);
  background: var(--mk-white);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mk-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--mk-ink);
  position: relative;
}

.mk-nav__toggle span::before,
.mk-nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--mk-ink);
}

.mk-nav__toggle span::before { top: -6px; }
.mk-nav__toggle span::after { top: 6px; }

.mk-nav.is-open .mk-nav__links {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.5rem 1rem 1.25rem;
  background: var(--mk-white);
  border-bottom: 1px solid var(--mk-line);
  box-shadow: var(--mk-shadow);
}

.mk-nav.is-open .mk-nav__links > li:not(.mk-nav__mobile-cta) > a {
  display: block;
  padding: 0.85rem 0.35rem;
  border-bottom: 1px solid var(--mk-line);
}

.mk-nav.is-open .mk-nav__mobile-cta {
  display: block;
  padding-top: 0.65rem;
}

.mk-nav.is-open .mk-nav__mobile-cta + .mk-nav__mobile-cta {
  padding-top: 0.5rem;
}

.mk-nav.is-open .mk-nav__mobile-cta .mk-btn {
  width: 100%;
}

@media (min-width: 1080px) {
  .mk-nav__inner {
    display: flex;
    width: min(100% - 2rem, var(--mk-max));
    gap: 1.25rem;
  }

  .mk-nav__brand {
    grid-column: auto;
    justify-self: auto;
    justify-content: flex-start;
  }

  .mk-nav__brand img {
    object-position: left center;
  }

  .mk-nav__toggle {
    display: none;
  }

  .mk-nav__links {
    display: flex;
    flex-wrap: nowrap;
    margin-left: 1.25rem;
    gap: 0.25rem 0.95rem;
  }

  .mk-nav__mobile-cta {
    display: none !important;
  }

  .mk-nav__actions {
    display: flex;
    margin-left: auto;
  }
}

/* —— Buttons —— */
.mk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--mk-font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mk-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.mk-btn--primary {
  background: linear-gradient(135deg, var(--mk-green) 0%, var(--mk-green-bright) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 168, 107, 0.28);
}

.mk-btn--primary:hover {
  color: #fff;
}

.mk-btn--blue {
  background: linear-gradient(135deg, var(--mk-blue) 0%, #2a8fd4 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 107, 181, 0.28);
}

.mk-btn--blue:hover {
  color: #fff;
}

.mk-btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.mk-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mk-btn--ghost {
  background: var(--mk-white);
  border-color: var(--mk-line);
  color: var(--mk-ink);
}

.mk-btn--ghost:hover {
  border-color: var(--mk-blue);
  color: var(--mk-blue);
}

.mk-btn--sm {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
}

.mk-btn--block {
  width: 100%;
}

/* —— Hero —— */
.mk-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(18, 196, 138, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(255, 255, 255, 0.12), transparent 50%),
    linear-gradient(145deg, var(--mk-blue-deep) 0%, var(--mk-blue) 48%, #0f7a5c 100%);
}

.mk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 40%, transparent 95%);
  pointer-events: none;
}

.mk-hero__grid {
  position: relative;
  width: min(100% - 2rem, var(--mk-max));
  margin: 0 auto;
  padding: 3.5rem 0 4.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .mk-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 4.5rem 0 5.5rem;
    gap: 3rem;
  }
}

.mk-hero__brand {
  display: block;
  margin-bottom: 1.25rem;
}

.mk-hero__brand img {
  height: 58px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mk-hero__title {
  margin: 0 0 1rem;
  font-family: var(--mk-font-display);
  font-weight: 650;
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: none;
}

.mk-hero__lede {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
  max-width: none;
  color: rgba(255, 255, 255, 0.9);
}

.mk-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mk-hero__ctas .mk-btn {
  flex: 1 1 auto;
  min-width: min(100%, 9.5rem);
}

.mk-hero__visual {
  justify-self: center;
  width: min(100%, 270px);
}

/* Phone / SMS mock —— dominant visual */
.mk-phone {
  position: relative;
  background: #0b1220;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.mk-phone__screen {
  background: linear-gradient(180deg, #f7fafc 0%, #e8eef5 100%);
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9 / 18.5;
  min-height: 480px;
  color: var(--mk-ink);
}

.mk-phone__bar {
  padding: 0.85rem 1rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--mk-line);
}

.mk-phone__thread {
  padding: 1rem 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mk-bubble {
  max-width: 88%;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  font-size: 0.86rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  animation: mk-bubble-in 0.55s ease forwards;
}

.mk-bubble--out {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--mk-blue) 0%, #2a8fd4 100%);
  color: #fff;
  border-bottom-right-radius: 5px;
}

.mk-bubble--in {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-bottom-left-radius: 5px;
}

.mk-bubble:nth-child(1) { animation-delay: 0.25s; }
.mk-bubble:nth-child(2) { animation-delay: 0.7s; }
.mk-bubble:nth-child(3) { animation-delay: 1.15s; }

@keyframes mk-bubble-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mk-bubble__meta {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  opacity: 0.7;
}

/* —— Sections —— */
.mk-section {
  padding: 3rem 0;
}

@media (min-width: 720px) {
  .mk-section {
    padding: 4.5rem 0;
  }
}

.mk-section--surface {
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(0, 168, 107, 0.08), transparent 55%),
    var(--mk-surface);
}

.mk-section--ink {
  background: var(--mk-ink);
  color: #fff;
}

.mk-section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mk-green);
  text-align: left;
}

.mk-section__title {
  margin: 0 0 0.75rem;
  font-family: var(--mk-font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: none;
  text-align: left;
}

.mk-section__lede {
  margin: 0 0 2rem;
  color: var(--mk-muted);
  max-width: none;
  font-size: 1.08rem;
  text-align: left;
}

.mk-section--ink .mk-section__lede {
  color: rgba(255, 255, 255, 0.75);
}

.mk-section__head {
  margin-bottom: 2.25rem;
  text-align: left;
}

/* Loop steps */
.mk-loop {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .mk-loop {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.mk-step {
  position: relative;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: var(--mk-radius);
  background: var(--mk-white);
  border: 1px solid var(--mk-line);
  box-shadow: 0 10px 30px rgba(13, 61, 107, 0.05);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.mk-step.is-in {
  opacity: 1;
  transform: translateY(0);
}

.mk-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--mk-blue-soft);
  color: var(--mk-blue-deep);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.mk-step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--mk-font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.mk-step p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.98rem;
}

/* Industries */
.mk-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* One shared fade for pills + industry hero (no stacked seams) */
.mk-industry-band {
  margin: 0;
  padding: 0 0 2.5rem;
  background:
    radial-gradient(ellipse 55% 70% at 0% 0%, rgba(0, 168, 107, 0.12), transparent 58%),
    linear-gradient(180deg, var(--mk-surface) 0%, var(--mk-white) 100%);
}

.mk-industries-nav {
  margin: 0 0 1rem;
  padding: 1.25rem 0 0.75rem;
  background: transparent;
}

.mk-industries--nav {
  justify-content: flex-start;
}

.mk-industries--nav .mk-chip {
  background: var(--mk-white);
  border: 1px solid var(--mk-line);
  color: var(--mk-ink);
  font-weight: 600;
}

.mk-industries--nav .mk-chip:hover {
  background: var(--mk-blue-soft);
  border-color: rgba(26, 107, 181, 0.35);
  color: var(--mk-blue-deep);
}

.mk-industries--nav .mk-chip.is-active,
.mk-industries--nav .mk-chip--accent {
  background: linear-gradient(135deg, var(--mk-green) 0%, var(--mk-green-bright) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 168, 107, 0.22);
}

.mk-industries--nav .mk-chip.is-active:hover,
.mk-industries--nav .mk-chip--accent:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--mk-green) 0%, var(--mk-green-bright) 100%);
}

.mk-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mk-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.mk-chip--accent {
  background: rgba(18, 196, 138, 0.2);
  border-color: rgba(18, 196, 138, 0.45);
}

.mk-industry-band .mk-page-hero--industry {
  padding: 0.5rem 0 0;
  background: transparent;
}

/* Features */
.mk-features {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .mk-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .mk-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mk-feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-family: var(--mk-font-display);
}

.mk-feature p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.98rem;
}

.mk-feature__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--mk-blue-soft), #dff5ec);
  color: var(--mk-blue-deep);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Quote */
.mk-quote {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.mk-quote blockquote {
  margin: 0 0 1rem;
  font-family: var(--mk-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.mk-quote cite {
  display: block;
  font-style: normal;
  color: var(--mk-muted);
  font-size: 0.95rem;
}

/* Plans teaser */
.mk-plans-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--mk-radius);
  background: var(--mk-white);
  border: 1px solid var(--mk-line);
  box-shadow: var(--mk-shadow);
}

.mk-plans-teaser strong {
  font-family: var(--mk-font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.mk-plans-teaser p {
  margin: 0.25rem 0 0;
  color: var(--mk-muted);
}

/* —— Page header (inner) —— */
.mk-page-hero {
  padding: 2rem 0 1.5rem;
  text-align: left;
  background:
    radial-gradient(ellipse 50% 80% at 0% 0%, rgba(0, 168, 107, 0.12), transparent 60%),
    linear-gradient(180deg, var(--mk-surface) 0%, var(--mk-white) 100%);
}

@media (min-width: 720px) {
  .mk-page-hero {
    padding: 3rem 0 2rem;
  }
}

.mk-page-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--mk-font-display);
  font-size: clamp(1.85rem, 6.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: none;
  text-align: left;
}

.mk-page-hero p {
  margin: 0;
  color: var(--mk-muted);
  max-width: none;
  font-size: clamp(1rem, 3.6vw, 1.1rem);
  text-align: left;
}

.mk-page-hero p.mk-lede-span {
  max-width: none;
  width: min(100%, var(--mk-max));
  margin-inline: 0;
  line-height: 1.55;
  text-align: left;
  white-space: normal;
}

/* —— Pricing cards —— */
.mk-pricing-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .mk-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .mk-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mk-price-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: var(--mk-radius);
  border: 1px solid var(--mk-line);
  background: var(--mk-white);
  position: relative;
}

.mk-price-card--featured {
  border-color: var(--mk-green);
  box-shadow: 0 16px 40px rgba(0, 168, 107, 0.15);
}

.mk-price-card__badge {
  position: absolute;
  top: -0.65rem;
  right: 1rem;
  background: var(--mk-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.mk-price-card__name {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: 1.5rem;
}

.mk-price-card__price {
  margin: 0.5rem 0 0.25rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.mk-price-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mk-muted);
}

.mk-price-card__meta {
  margin: 0 0 1rem;
  color: var(--mk-muted);
  font-size: 0.92rem;
}

.mk-price-card ul {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.mk-price-card li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  border-top: 1px solid var(--mk-line);
}

.mk-price-card li:first-child {
  border-top: 0;
}

.mk-price-note {
  margin: 1.5rem 0 0;
  color: var(--mk-muted);
  font-size: 0.95rem;
  text-align: left;
}

.mk-alert {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.mk-alert--danger {
  background: #fde8e8;
  color: #8a1f1f;
}

.mk-alert--success {
  background: #e5f8ef;
  color: #0d5c3d;
}

.mk-payment-errors {
  display: none;
  color: #8a1f1f;
  margin-bottom: 1rem;
  text-align: left;
}

/* —— Forms —— */
.mk-form {
  max-width: 420px;
  margin: 0;
}

.mk-form--split {
  max-width: 720px;
}

.mk-form__grid {
  display: grid;
  gap: 0.85rem 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .mk-form__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.25rem;
  }
}

.mk-form__actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
}

.mk-form--split .mk-form__actions .mk-btn {
  width: min(100%, 18rem);
}

@media (min-width: 720px) {
  .mk-form--split .mk-form__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.25rem;
  }

  .mk-form--split .mk-form__actions .mk-btn {
    width: 100%;
  }
}

.mk-form__panel {
  background: var(--mk-white);
  box-shadow: 0 10px 28px rgba(13, 61, 107, 0.04);
}

.mk-form__panel .mk-field:last-child {
  margin-bottom: 0;
}

.mk-field {
  margin-bottom: 0.85rem;
}

.mk-field input,
.mk-field select,
.mk-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--mk-line);
  border-radius: 12px;
  font: inherit;
  background: var(--mk-white);
  color: var(--mk-ink);
}

.mk-field input:focus,
.mk-field select:focus,
.mk-field textarea:focus {
  outline: 2px solid rgba(26, 107, 181, 0.35);
  border-color: var(--mk-blue);
}

/* —— Embeds (Google Slides) —— */
.mk-embed {
  --mk-embed-w: 960;
  --mk-embed-h: 569;
  position: relative;
  width: 100%;
  max-width: calc(var(--mk-embed-w) * 1px);
  margin: 0 auto;
  aspect-ratio: var(--mk-embed-w) / var(--mk-embed-h);
  border-radius: var(--mk-radius);
  background: #000;
  box-shadow: 0 14px 40px rgba(13, 61, 107, 0.06);
  overflow: hidden;
}

.mk-embed iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  /* Slight overscale crops Google’s letterbox bars on the edges */
  transform: translate(-50%, -50%) scale(1.045);
  transform-origin: center center;
}

/* —— Content prose —— */
.mk-prose {
  max-width: 68ch;
  margin-inline: 0;
  text-align: left;
}

.mk-prose h2 {
  font-family: var(--mk-font-display);
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
}

.mk-prose p,
.mk-prose li {
  color: var(--mk-muted);
}

.mk-prose a {
  font-weight: 600;
}

/* Testimonials */
.mk-testimonial-list {
  display: grid;
  gap: 1.25rem;
}

.mk-testimonial {
  padding: 1.5rem 1.4rem;
  border-radius: var(--mk-radius);
  background: var(--mk-white);
  border: 1px solid var(--mk-line);
}

.mk-testimonial h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.mk-testimonial blockquote {
  margin: 0 0 0.75rem;
  color: var(--mk-ink);
  font-size: 1.02rem;
}

.mk-testimonial footer {
  color: var(--mk-muted);
  font-size: 0.9rem;
}

/* Industry LP */
.mk-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .mk-split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.mk-panel {
  padding: 1.5rem;
  border-radius: var(--mk-radius);
  background: var(--mk-surface);
  border: 1px solid var(--mk-line);
}

.mk-panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--mk-font-display);
}

.mk-panel p {
  margin: 0;
  color: var(--mk-muted);
}

/* —— Install tools —— */
.mk-install {
  max-width: 480px;
  display: grid;
  gap: 1.5rem;
}

.mk-install__item {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.mk-install__btn {
  width: 12.25rem;
  box-sizing: border-box;
}

.mk-install__benefit {
  margin: 0;
  color: var(--mk-muted);
  font-size: 1.02rem;
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .mk-install__benefit {
    white-space: normal;
  }
}

.mk-install__links {
  margin: 0.5rem 0 0;
  text-align: center;
}

/* —— Footer —— */
.mk-footer {
  margin-top: auto;
  padding: 3rem 0 2rem;
  background: var(--mk-ink);
  color: rgba(255, 255, 255, 0.78);
}

.mk-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.mk-footer a:hover {
  color: var(--mk-green-bright);
}

.mk-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .mk-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.mk-footer__brand img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 0.85rem;
}

.mk-footer h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mk-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mk-footer li {
  margin-bottom: 0.45rem;
}

.mk-footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}

/* Screenshot grid (about / product) */
.mk-shots {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: 1fr;
  max-width: none;
}

@media (min-width: 720px) {
  .mk-shots {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.mk-shot {
  text-align: left;
}

.mk-shot__title {
  margin: 0 0 0.75rem;
  min-height: 1.35em;
  font-family: var(--mk-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mk-shot img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: inline-block;
  vertical-align: top;
}

/* FAQ */
.mk-faq h3 {
  margin: 2rem 0 0.75rem;
  font-family: var(--mk-font-display);
  color: var(--mk-ink);
}

.mk-faq dl {
  margin: 0 0 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--mk-line);
}

.mk-faq dt {
  font-weight: 650;
  color: var(--mk-ink);
  margin-bottom: 0.35rem;
}

.mk-faq dd {
  margin: 0;
  color: var(--mk-muted);
}

/* Reveal helper */
.mk-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mk-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
