:root{
  --mk-green:#1f7a45;
  --mk-green-2:#166534;
  --mk-orange:#d97706;
  --mk-ink:#0f172a;
  --mk-muted:#64748b;
  --mk-bg:#f5f7fb;
  --mk-border: rgba(15, 23, 42, 0.08);
  --mk-shadow: 0 14px 40px rgba(2, 6, 23, 0.08);
  --mk-radius: 22px;
}

.mk-body{
  background:
    radial-gradient(1200px 600px at 30% 0%, rgba(31,122,69,0.10), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(217,119,6,0.10), transparent 55%),
    var(--mk-bg);
  color: var(--mk-ink);
}

.mk-nav{ position: sticky; top: 0; z-index: 50; padding: 18px 0; }
.mk-nav-inner{
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--mk-border);
  border-radius: 999px;
  box-shadow: var(--mk-shadow);
  padding: 12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.mk-brand{ display:flex; align-items:center; gap: 12px; text-decoration:none; color: var(--mk-ink); }
.mk-mark{ width: 44px; height: 32px; border-radius: 12px; background: linear-gradient(180deg, var(--mk-green), var(--mk-green-2)); }
.mk-logo{ height: 28px; width: auto; display:block; }

.mk-links{ gap: 24px; }
.mk-links a{ text-decoration:none; color: rgba(15,23,42,0.65); font-weight: 600; }
.mk-links a:hover{ color: rgba(15,23,42,0.9); }

.btn-mk{
  background: linear-gradient(180deg, var(--mk-green), var(--mk-green-2));
  border: 0; color:#fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}
.btn-mk:hover{ color:#fff; opacity: .95; }

.btn-mk-alt{
  background: linear-gradient(180deg, #f59e0b, var(--mk-orange));
  border: 0; color:#fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}
.btn-mk-alt:hover{ color:#fff; opacity: .95; }

.mk-menu{ border-radius: 999px; }

.mk-hero{ padding: 28px 0 6px; }
.mk-hero-card{
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  box-shadow: var(--mk-shadow);
  padding: 22px;
}
.mk-hero-grid{ display:grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }

.mk-hero-img{
  position: relative;
  border-radius: 26px;
  overflow:hidden;
  min-height: 360px;
  background: url('../img/landing-reference.png') center/cover no-repeat;
}
.mk-hero-img-overlay{ position:absolute; inset:0; background: linear-gradient(90deg, rgba(15,23,42,0.72), rgba(15,23,42,0.18)); }
.mk-hero-text{ position:absolute; left: 26px; top: 82px; right: 26px; color:#fff; z-index: 2; }
.mk-hero-text h1{ font-size: clamp(40px, 4vw, 58px); line-height: 1.04; font-weight: 900; letter-spacing: -0.02em; }
.mk-hero-text p{ margin-top: 12px; max-width: 520px; color: rgba(255,255,255,0.85); font-weight: 600; }
.mk-hero-buttons{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.mk-arrow{
  position:absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.18);
  color:#fff; display:grid; place-items:center; z-index: 3;
}
.mk-arrow-left{ left: 16px; }
.mk-arrow-right{ right: 16px; }

.mk-spotlight{
  position:relative; height: 100%;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(245, 230, 216, 0.7), rgba(255, 245, 237, 0.7));
  border: 1px solid rgba(217,119,6,0.20);
  padding: 22px;
  overflow:hidden;
}
.mk-spotlight-title{ font-weight: 900; font-size: 24px; }
.mk-spotlight-sub{ color: rgba(15,23,42,0.65); margin-top: 6px; font-weight: 600; }

.mk-badges{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.mk-badge{
  padding: 6px 12px; border-radius: 999px;
  font-weight: 800; font-size: 13px;
  border: 1px solid rgba(15,23,42,0.08);
  background: #fff;
}
.mk-badge-green{ color: var(--mk-green); background: rgba(31,122,69,0.10); border-color: rgba(31,122,69,0.18); }
.mk-badge-orange{ color: var(--mk-orange); background: rgba(217,119,6,0.10); border-color: rgba(217,119,6,0.18); }
.mk-badge-red{ color: #b91c1c; background: rgba(185,28,28,0.10); border-color: rgba(185,28,28,0.18); }

.mk-pill{ border-radius: 999px !important; padding: 10px 16px; font-weight: 800; }
.mk-pill-lite{
  display:inline-flex; border-radius: 999px; padding: 6px 10px;
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.06);
  color: rgba(15,23,42,0.70);
  font-weight: 800; font-size: 12px;
}

.mk-confetti{ position:absolute; inset:0; z-index: 0; pointer-events:none; }
.mk-dot{ position:absolute; width: 12px; height: 12px; border-radius: 999px; opacity: .7; }
/* fixed positions for consistent look */
.mk-dot:nth-child(1){ left: 30px; top: 110px; background:#60a5fa;}
.mk-dot:nth-child(2){ left: 120px; top: 160px; background:#34d399;}
.mk-dot:nth-child(3){ left: 190px; top: 220px; background:#f59e0b;}
.mk-dot:nth-child(4){ left: 240px; top: 140px; background:#a78bfa;}
.mk-dot:nth-child(5){ left: 280px; top: 260px; background:#fb7185;}
.mk-dot:nth-child(6){ left: 70px; top: 260px; background:#22c55e;}
.mk-dot:nth-child(7){ left: 210px; top: 310px; background:#60a5fa;}
.mk-dot:nth-child(8){ left: 310px; top: 200px; background:#a78bfa;}
.mk-dot:nth-child(9){ left: 340px; top: 280px; background:#f59e0b;}
.mk-dot:nth-child(10){ left: 150px; top: 300px; background:#ef4444;}
.mk-dot:nth-child(11){ left: 40px; top: 210px; background:#a78bfa;}
.mk-dot:nth-child(12){ left: 320px; top: 130px; background:#22c55e;}
.mk-dot:nth-child(13){ left: 260px; top: 320px; background:#60a5fa;}
.mk-dot:nth-child(14){ left: 110px; top: 230px; background:#f59e0b;}
.mk-dot:nth-child(15){ left: 290px; top: 150px; background:#ef4444;}
.mk-dot:nth-child(16){ left: 170px; top: 180px; background:#22c55e;}
.mk-dot:nth-child(17){ left: 95px; top: 125px; background:#60a5fa;}
.mk-dot:nth-child(18){ left: 250px; top: 235px; background:#a78bfa;}

.mk-stats{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.mk-stat{
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--mk-border);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.06);
}
.mk-stat-num{ font-weight: 900; }
.mk-stat-label{ color: var(--mk-muted); font-weight: 700; font-size: 13px; }

.mk-section{ padding: 26px 0; }
.mk-h2{ font-weight: 950; letter-spacing: -0.02em; font-size: clamp(28px, 2.4vw, 40px); }

.mk-event{
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--mk-border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.06);
  height: 100%;
}
.mk-event-head{ display:flex; justify-content:space-between; align-items:center; }
.mk-event-logo{ height: 22px; width:auto; opacity: 0.95; }
.mk-chip{
  padding: 6px 10px; border-radius: 999px;
  background: rgba(31,122,69,0.10);
  border: 1px solid rgba(31,122,69,0.18);
  color: var(--mk-green);
  font-weight: 900;
  font-size: 12px;
}
.mk-event-title{ font-weight: 900; font-size: 18px; margin-top: 10px; }
.mk-distances{ display:flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.mk-how .mk-image-card{
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  box-shadow: var(--mk-shadow);
  padding: 14px;
}

.mk-steps{ display:grid; gap: 12px; margin-top: 16px; }
.mk-step{
  display:flex; gap: 12px; align-items:flex-start;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--mk-border);
  border-radius: 18px;
  padding: 12px 14px;
}
.mk-step-icon{
  width: 38px; height: 38px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(31,122,69,0.10);
  border: 1px solid rgba(31,122,69,0.18);
  color: var(--mk-green);
}

.mk-cta-band{
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  box-shadow: var(--mk-shadow);
  padding: 18px;
  display:flex; align-items:center; justify-content:space-between; gap: 12px;
}

.mk-card{
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  box-shadow: var(--mk-shadow);
  padding: 18px;
}

.mk-page{ padding: 22px 0 34px; }
.mk-page-head{
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  box-shadow: var(--mk-shadow);
  padding: 18px;
}

.mk-footer{
  padding: 26px 0 30px;
  border-top: 1px solid var(--mk-border);
  background: rgba(255,255,255,0.55);
}
.mk-footer a{ color: rgba(15,23,42,0.75); text-decoration:none; font-weight: 700; }
.mk-footer a:hover{ text-decoration: underline; }

@media (max-width: 991.98px){
  .mk-hero-grid{ grid-template-columns: 1fr; }
  .mk-stats{ grid-template-columns: 1fr; }
  .mk-nav-inner{ border-radius: 24px; }
}


/* sticky footer */
.mk-sticky{ min-height: 100vh; display:flex; flex-direction:column; }
.mk-main{ flex: 1 0 auto; }

/* carousel section */
.mk-carousel{ padding: 10px 0 10px; }
.mk-carousel-wrap{
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid var(--mk-border);
  box-shadow: var(--mk-shadow);
  background: rgba(255,255,255,0.65);
}
.mk-slide{
  min-height: 380px;
  display:flex;
  align-items:center;
  padding: 34px;
  position: relative;
}
.mk-slide:before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(31,122,69,0.18), transparent 55%),
    radial-gradient(900px 420px at 85% 20%, rgba(217,119,6,0.16), transparent 55%),
    linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.20));
}
.mk-slide-content{ position: relative; max-width: 720px; }
.mk-slide-content h1{
  font-size: clamp(40px, 4.1vw, 64px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.mk-slide-content p{ margin-top: 10px; color: rgba(15,23,42,0.70); font-weight: 700; font-size: 16px; max-width: 640px; }
.mk-slide-mini{
  margin-top: 18px;
  display:flex; align-items:center; gap: 10px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--mk-border);
  border-radius: 999px;
  padding: 10px 14px;
  width: fit-content;
}
.mk-slide-mini img{ height: 22px; width:auto; }
.mk-slide-mini span{ font-weight: 800; color: rgba(15,23,42,0.70); }


/* about feature cards */
.mk-feature{
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--mk-border);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.06);
  overflow:hidden;
  height: 100%;
}
.mk-feature img{ width: 100%; height: 170px; object-fit: cover; display:block; }
.mk-feature-body{ padding: 14px 14px 16px; }
.mk-feature-title{ font-weight: 950; letter-spacing: -0.02em; font-size: 18px; }
.mk-feature-text{ color: var(--mk-muted); font-weight: 700; margin-top: 6px; }

/* active event section */
.mk-active{
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius);
  box-shadow: var(--mk-shadow);
  padding: 18px;
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 16px;
}
.mk-active-kicker{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31,122,69,0.10);
  border: 1px solid rgba(31,122,69,0.18);
  color: var(--mk-green);
  font-weight: 950;
  font-size: 12px;
}
.mk-active-title{ font-size: 34px; font-weight: 950; letter-spacing: -0.03em; margin-top: 10px; }
.mk-active-sub{ color: rgba(15,23,42,0.65); font-weight: 700; margin-top: 4px; }
.mk-active-meta{ display:grid; gap: 8px; color: rgba(15,23,42,0.70); font-weight: 800; }
.mk-active-meta i{ color: var(--mk-green); margin-right: 8px; }

.mk-active-panel{
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.08);
  background: linear-gradient(180deg, rgba(15,23,42,0.92), rgba(15,23,42,0.86));
  color: #fff;
  overflow:hidden;
}
.mk-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px 0;
}
.mk-panel-head img{ height: 22px; filter: brightness(1.2); }
.mk-panel-body{ padding: 14px; }
.mk-panel-row{
  display:flex;
  justify-content:space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.mk-panel-row:last-child{ border-bottom: 0; }

@media (max-width: 991.98px){
  .mk-active{ grid-template-columns: 1fr; }
  .mk-slide{ padding: 22px; min-height: 340px; }
}


.mk-slide-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
}
.mk-slide-text{
  color:#fff;
  text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.mk-slide-text p{ color: rgba(255,255,255,0.88); }

/* form blocks (visual separation) */
.mk-form-block{
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--mk-border);
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 10px 22px rgba(2,6,23,0.05);
}
.mk-form-block-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap: 10px;
}
.mk-form-block-title{
    font-weight: 950;
    letter-spacing: -0.02em;
    font-size: 16px;
}
.mk-form-block-sub{
    color: var(--mk-muted);
    font-weight: 700;
    font-size: 13px;
    margin-top: 2px;
}

/* right-side cart list */
.mk-cart-list{ display:grid; gap: 10px; }
.mk-empty{
    border: 1px dashed rgba(15,23,42,0.18);
    border-radius: 16px;
    padding: 14px;
    color: rgba(15,23,42,0.60);
    font-weight: 700;
    background: rgba(15,23,42,0.02);
}
.mk-cart-item{
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 18px;
    padding: 12px;
    background: rgba(255,255,255,0.92);
}
.mk-cart-top{ display:flex; justify-content:space-between; align-items:flex-start; gap: 10px; }
.mk-cart-name{ font-weight: 950; }
.mk-cart-sub{ color: rgba(15,23,42,0.62); font-weight: 700; font-size: 13px; margin-top: 2px; }
.mk-cart-meta{ display:flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }

.mk-remove{
    border: 0;
    background: rgba(15,23,42,0.06);
    border-radius: 999px;
    width: 34px;
    height: 34px;
    display:grid;
    place-items:center;
    color: rgba(15,23,42,0.7);
}
.mk-remove:hover{ background: rgba(15,23,42,0.10); }

/* summary card */
.mk-summary{ display:grid; gap: 10px; }
.mk-summary-row{ display:flex; justify-content:space-between; font-weight:800; }
.mk-summary-total{
    border-top: 1px solid rgba(15,23,42,0.10);
    padding-top: 10px;
    font-weight: 950;
    font-size: 18px;
}

/* payment options */
.mk-pay{ display:grid; gap: 10px; }
.mk-pay-option{
    display:flex;
    gap: 10px;
    align-items:flex-start;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,0.10);
    background: rgba(255,255,255,0.92);
    cursor:pointer;
}
.mk-pay-option input{ margin-top: 4px; }
.mk-pay-option strong{ display:block; }
.mk-pay-option small{ display:block; color: rgba(15,23,42,0.62); font-weight:700; }

.mk-modal{
    border-radius: 20px;
    border: 1px solid rgba(15,23,42,0.10);
}
