/* Ekklesia marketing homepage */

:root {
  --mk-ink: #10231f;
  --mk-muted: #586861;
  --mk-green: #0b5c53;
  --mk-green-deep: #063c36;
  --mk-mint: #dcefe8;
  --mk-gold: #d8b45f;
  --mk-coral: #b85a4b;
  --mk-blue: #2f5871;
  --mk-paper: #f8f7f2;
  --mk-soft: #eef5f1;
  --mk-surface: #ffffff;
  --mk-line: rgba(16, 35, 31, 0.13);
  --mk-shadow: 0 22px 52px rgba(16, 35, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.mk-page {
  margin: 0;
  color: var(--mk-ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--mk-paper) 34rem, #ffffff 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mk-page a {
  color: inherit;
}

.mk-page img {
  max-width: 100%;
}

.mk-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.85rem max(1rem, calc((100% - 1180px) / 2));
  color: #fff;
  background: rgba(6, 60, 54, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.mk-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.mk-brand img {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.3rem;
}

.mk-brand-wordmark img {
  width: 13rem;
  height: 3.05rem;
  object-fit: contain;
  background: #fff;
  padding: 0.25rem 0.45rem;
}

.mk-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.mk-nav-links a {
  text-decoration: none;
}

.mk-login {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}

.mk-hero {
  position: relative;
  isolation: isolate;
  min-height: 76svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(20rem, 0.96fr);
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  padding: 6.7rem max(1rem, calc((100% - 1180px) / 2)) 2.6rem;
  color: #fff;
  background: #073a35;
}

.mk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 34, 31, 0.98) 0%, rgba(7, 56, 50, 0.9) 48%, rgba(11, 92, 83, 0.64) 100%),
    url("/images/screenshot1.png") right 8% bottom -18rem / 30rem auto no-repeat,
    linear-gradient(135deg, #063c36 0%, #0b5c53 58%, #d8b45f 100%);
}

.mk-hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18rem),
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.08) 100%);
  pointer-events: none;
}

.mk-hero-content {
  position: relative;
  z-index: 2;
  width: min(43rem, 100%);
}

.mk-kicker {
  margin: 0 0 0.8rem;
  color: var(--mk-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mk-hero h1,
.mk-section h2,
.mk-product-copy h2,
.mk-request h2,
.mk-preview-copy h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.mk-hero h1 {
  font-size: 6.8rem;
  line-height: 0.92;
}

.mk-hero-copy {
  width: min(42rem, 100%);
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
  line-height: 1.68;
}

.mk-actions,
.mk-request-actions,
.mk-footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

.mk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.95rem;
  max-width: 100%;
  padding: 0.78rem 1.05rem;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.mk-btn-primary {
  color: var(--mk-ink);
  background: var(--mk-gold);
  box-shadow: 0 18px 36px rgba(216, 180, 95, 0.24);
}

.mk-btn-secondary {
  color: #fff;
  background: var(--mk-coral);
}

.mk-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.mk-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.mk-hero-metrics div {
  min-height: 5.75rem;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.mk-hero-metrics strong,
.mk-hero-metrics span {
  display: block;
}

.mk-hero-metrics strong {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1.02rem;
}

.mk-hero-metrics span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
}

.mk-hero-product {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(27.5rem, 100%);
  min-height: 28rem;
}

.mk-product-frame {
  position: absolute;
  right: 1.5rem;
  bottom: -1.4rem;
  width: min(18.5rem, 78%);
  transform: rotate(2deg);
  filter: drop-shadow(0 34px 52px rgba(0, 0, 0, 0.34));
}

.mk-product-frame img {
  display: block;
  width: 100%;
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.mk-product-note {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 17rem;
  padding: 0.75rem 0.85rem;
  color: var(--mk-ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  line-height: 1.35;
}

.mk-product-note i {
  color: var(--mk-green);
  font-size: 1.25rem;
}

.mk-note-top {
  top: 2.25rem;
  left: 0;
}

.mk-note-bottom {
  right: 0;
  bottom: 3.35rem;
}

.mk-proof,
.mk-status,
.mk-section,
.mk-product-band,
.mk-footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.mk-proof {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2rem;
  padding: 1.1rem 0 0;
}

.mk-proof-item,
.mk-feature,
.mk-audience-card,
.mk-trust-grid article,
.mk-compare,
.mk-step {
  background: var(--mk-surface);
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(16, 35, 31, 0.07);
}

.mk-proof-item {
  min-height: 10.5rem;
  padding: 1rem;
}

.mk-proof-item i {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.75rem;
  color: #fff;
  background: var(--mk-green);
  border-radius: 8px;
  font-size: 1rem;
}

.mk-proof-item strong,
.mk-proof-item span {
  display: block;
}

.mk-proof-item strong {
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.mk-proof-item span {
  color: var(--mk-muted);
  line-height: 1.52;
}

.mk-status {
  margin-top: 1rem;
}

.mk-alert {
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
}

.mk-alert-success {
  color: #064336;
  background: #e3f4ed;
  border: 1px solid rgba(6, 67, 54, 0.18);
}

.mk-alert-error {
  color: #7d241b;
  background: #fde9e5;
  border: 1px solid rgba(125, 36, 27, 0.18);
}

.mk-section {
  padding: 5.6rem 0 1.8rem;
}

.mk-section-head {
  width: min(48rem, 100%);
  margin-bottom: 2rem;
}

.mk-section-head-wide {
  width: min(60rem, 100%);
}

.mk-section h2,
.mk-product-copy h2,
.mk-request h2,
.mk-preview-copy h2 {
  color: var(--mk-ink);
  font-size: 3.1rem;
  line-height: 1.05;
}

.mk-section-head p:not(.mk-kicker),
.mk-product-copy p,
.mk-step p,
.mk-request p,
.mk-modal-copy,
.mk-preview-copy p,
.mk-feature p,
.mk-audience-card p,
.mk-trust-grid p,
.mk-compare li {
  color: var(--mk-muted);
  line-height: 1.7;
}

.mk-section-head p:not(.mk-kicker) {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.mk-admin-case {
  padding-top: 5rem;
}

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

.mk-compare {
  padding: 1.25rem;
}

.mk-compare > span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.42rem 0.65rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mk-compare-pain > span {
  color: #7d241b;
  background: #fde9e5;
}

.mk-compare-win > span {
  color: #064336;
  background: #e3f4ed;
}

.mk-compare ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mk-compare li {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.mk-compare i {
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.mk-compare-pain i {
  color: var(--mk-coral);
}

.mk-compare-win i {
  color: var(--mk-green);
}

.mk-audience-section {
  padding-top: 4.5rem;
}

.mk-audience-grid,
.mk-feature-grid,
.mk-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mk-audience-card,
.mk-trust-grid article {
  min-height: 14.2rem;
  padding: 1.2rem;
}

.mk-audience-card i,
.mk-feature i,
.mk-trust-grid i {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.05rem;
  color: #fff;
  background: var(--mk-green);
  border-radius: 8px;
  font-size: 1.14rem;
}

.mk-audience-card:nth-child(2) i,
.mk-feature:nth-child(3n + 2) i,
.mk-trust-grid article:nth-child(2) i {
  background: var(--mk-blue);
}

.mk-audience-card:nth-child(3) i,
.mk-feature:nth-child(3n) i,
.mk-trust-grid article:nth-child(3) i {
  background: var(--mk-coral);
}

.mk-audience-card h3,
.mk-feature h3,
.mk-trust-grid h3,
.mk-step strong {
  margin: 0;
  font-size: 1.05rem;
}

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

.mk-feature {
  min-height: 15rem;
  padding: 1.25rem;
}

.mk-preview-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: 2rem;
  align-items: center;
  width: 100%;
  margin-top: 4.8rem;
  padding: 4.5rem max(1rem, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 56%, rgba(220, 239, 232, 0.92) 100%);
  border-block: 1px solid var(--mk-line);
}

.mk-preview-copy {
  width: min(43rem, 100%);
}

.mk-preview-copy p {
  margin-top: 1rem;
  font-size: 1.04rem;
}

.mk-preview-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.mk-preview-list span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--mk-ink);
  font-weight: 800;
}

.mk-preview-list i {
  color: var(--mk-green);
}

.mk-preview-visual {
  justify-self: center;
  width: min(19rem, 100%);
  transform: rotate(-2deg);
  filter: drop-shadow(0 28px 44px rgba(16, 35, 31, 0.2));
}

.mk-preview-visual img {
  display: block;
  width: 100%;
  border: 6px solid #ffffff;
  border-radius: 8px;
}

.mk-product-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 3rem;
  align-items: start;
  padding: 5rem 0 2rem;
}

.mk-steps {
  display: grid;
  gap: 1rem;
}

.mk-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
  min-height: 7.6rem;
  padding: 1.15rem;
}

.mk-step span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--mk-green-deep);
  background: var(--mk-gold);
  border-radius: 8px;
  font-weight: 900;
}

.mk-step p {
  margin: 0;
}

.mk-trust-section {
  padding-top: 4.5rem;
}

.mk-trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mk-request {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  margin-top: 4.5rem;
  padding: 3rem max(1rem, calc((100% - 1180px) / 2));
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 60, 54, 0.97), rgba(11, 92, 83, 0.92));
}

.mk-request > div:first-child {
  width: min(44rem, 100%);
}

.mk-request h2,
.mk-request p {
  color: #fff;
}

.mk-request p {
  margin-bottom: 0;
  opacity: 0.88;
}

.mk-request .mk-btn-secondary {
  background: #ffffff;
  color: var(--mk-green-deep);
}

.mk-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--mk-muted);
}

.mk-footer .mk-brand {
  color: var(--mk-ink);
}

.mk-footer-links a,
.mk-footer-links button {
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.ek-modal {
  align-items: center;
}

.ek-modal-dialog {
  max-width: 34rem;
  border-radius: 8px;
}

.ek-modal-dialog h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
}

.mk-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.2rem;
}

.mk-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--mk-ink);
  font-weight: 800;
}

.mk-form input {
  min-height: 2.85rem;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  font: inherit;
}

.mk-form input:focus {
  outline: 3px solid rgba(216, 180, 95, 0.28);
  border-color: var(--mk-gold);
}

.was-validated .mk-form input:invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

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

.mk-form-submit {
  width: 100%;
  margin-top: 0.35rem;
}

@media (max-width: 1080px) {
  .mk-nav {
    padding-inline: 1rem;
  }

  .mk-hero {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.72fr);
    padding-inline: 1rem;
  }

  .mk-hero h1 {
    font-size: 6rem;
  }

  .mk-proof,
  .mk-audience-grid,
  .mk-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .mk-nav {
    position: absolute;
  }

  .mk-nav-links a:not(.mk-login) {
    display: none;
  }

  .mk-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 6.8rem;
    padding-bottom: 3rem;
  }

  .mk-hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 34, 31, 0.97) 0%, rgba(7, 56, 50, 0.9) 58%, rgba(11, 92, 83, 0.72) 100%),
      url("/images/screenshot1.png") right -2.5rem bottom -7rem / 16rem auto no-repeat,
      linear-gradient(135deg, #063c36 0%, #0b5c53 58%, #d8b45f 100%);
  }

  .mk-hero-product {
    display: none;
  }

  .mk-compare-grid,
  .mk-product-band,
  .mk-preview-band {
    grid-template-columns: 1fr;
  }

  .mk-preview-band {
    padding-block: 3.5rem;
  }

  .mk-preview-visual {
    justify-self: start;
    width: min(15.5rem, 72vw);
    transform: none;
  }

  .mk-request,
  .mk-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .mk-nav {
    min-height: 66px;
    padding: 0.75rem 1rem;
  }

  .mk-brand {
    gap: 0.6rem;
  }

  .mk-brand img {
    width: 2.25rem;
    height: 2.25rem;
  }

  .mk-brand-wordmark img {
    width: min(10.8rem, calc(100vw - 6rem));
    height: 2.55rem;
  }

  .mk-login {
    width: 2.5rem;
    padding: 0;
  }

  .mk-login span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .mk-hero {
    padding: 8rem 1rem 2.35rem;
  }

  body.mk-page .mk-hero {
    padding-top: 96px;
  }

  .mk-hero h1 {
    font-size: 4.8rem;
    margin-top: 1rem;
  }

  .mk-hero .mk-kicker {
    display: none;
  }

  .mk-hero-copy {
    font-size: 1rem;
    line-height: 1.62;
  }

  .mk-actions,
  .mk-request-actions {
    align-items: stretch;
    width: 100%;
    flex-direction: column;
  }

  .mk-btn {
    width: 100%;
    min-height: 2.85rem;
    white-space: normal;
  }

  .mk-hero-metrics {
    display: none;
  }

  .mk-proof,
  .mk-status,
  .mk-section,
  .mk-product-band,
  .mk-footer {
    width: min(100% - 1rem, 1180px);
  }

  .mk-proof,
  .mk-audience-grid,
  .mk-feature-grid,
  .mk-trust-grid {
    grid-template-columns: 1fr;
  }

  .mk-proof-item,
  .mk-audience-card,
  .mk-feature,
  .mk-trust-grid article,
  .mk-step {
    min-height: auto;
  }

  .mk-section {
    padding-top: 3.8rem;
  }

  .mk-section h2,
  .mk-product-copy h2,
  .mk-request h2,
  .mk-preview-copy h2 {
    font-size: 2.25rem;
  }

  .mk-section-head {
    margin-bottom: 1.45rem;
  }

  .mk-compare {
    padding: 1rem;
  }

  .mk-preview-band {
    margin-top: 3.5rem;
    padding-inline: 1rem;
  }

  .mk-product-band {
    gap: 1.4rem;
  }

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

  .mk-step span {
    grid-row: auto;
  }

  .mk-request {
    margin-top: 3rem;
    padding: 2.35rem 1rem;
    background: linear-gradient(135deg, rgba(6, 60, 54, 0.97), rgba(11, 92, 83, 0.92));
  }

  .mk-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .mk-hero h1 {
    font-size: 4.1rem;
  }

  .mk-kicker {
    font-size: 0.73rem;
  }
}
