:root{
  --mk-bg:#0a0a0a;
  --mk-bg-2:#0f0f0f;
  --mk-ink:#fafafa;
  --mk-muted:#8a8a8a;
  --mk-soft:#c8c8c8;
  --mk-yellow:#FFD60A;
  --mk-red:#FF3B30;
  --mk-paper:#f6f0df;
  --mk-black:#000;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--mk-bg)}
body{
  margin:0;
  background:var(--mk-bg);
  color:var(--mk-ink);
  font-family:"Space Grotesk",Inter,system-ui,sans-serif;
  overflow-x:clip;
}
a{color:inherit}
.mk-page{
  background:var(--mk-bg);
  color:var(--mk-ink);
  overflow-x:clip;
  position:relative;
}
.mk-page::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:30;
  opacity:.08;
  mix-blend-mode:screen;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.mk-wrap{
  width:min(1180px,100%);
  margin:0 auto;
  padding:0 40px;
}
.mk-display{
  font-family:"Bebas Neue","Arial Narrow",Impact,sans-serif;
  font-weight:400;
  letter-spacing:.01em;
  line-height:.9;
  text-transform:uppercase;
}
.mk-mono{
  font-family:"JetBrains Mono",ui-monospace,monospace;
}
.mk-section{
  position:relative;
  padding:110px 0;
  overflow:hidden;
}
.mk-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 13px;
  background:rgba(255,214,10,.1);
  border:1px solid rgba(255,214,10,.35);
  color:var(--mk-yellow);
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.rec-dot{
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--mk-red);
  box-shadow:0 0 0 5px rgba(255,59,48,.16);
  animation:mkPulse 1.4s infinite;
}
@keyframes mkPulse{50%{box-shadow:0 0 0 12px rgba(255,59,48,0)}}
.yellow-highlight{
  color:var(--mk-yellow);
  text-shadow:0 0 42px rgba(255,214,10,.28);
}
.mk-btns{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}
.mk-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:17px 24px;
  border-radius:0;
  border:1px solid transparent;
  font-weight:800;
  text-decoration:none;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}
.mk-btn:hover{transform:translateY(-2px)}
.mk-btn-primary{
  background:var(--mk-yellow);
  color:#000;
  box-shadow:8px 8px 0 #000,0 0 38px rgba(255,214,10,.25);
}
.mk-btn-secondary{
  background:transparent;
  color:var(--mk-yellow);
  border-color:rgba(255,214,10,.45);
}
.mk-statusbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  width:100%;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.035);
  color:var(--mk-muted);
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:42px;
}
.mk-hero{
  min-height:100svh;
  display:flex;
  align-items:center;
  padding:90px 0 60px;
  background:
    linear-gradient(90deg,rgba(255,214,10,.06) 1px,transparent 1px),
    linear-gradient(180deg,rgba(255,214,10,.05) 1px,transparent 1px),
    radial-gradient(circle at 80% 22%,rgba(255,214,10,.16),transparent 28%),
    var(--mk-bg);
  background-size:72px 72px,72px 72px,auto,auto;
}
.mk-hero h1{
  max-width:980px;
  margin:24px 0 26px;
  font-size:clamp(72px,12vw,156px);
}
.mk-hero p{
  max-width:720px;
  color:var(--mk-soft);
  font-size:17px;
  line-height:1.65;
  margin:0;
}
.mk-take{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-top:60px;
  color:var(--mk-muted);
  font-size:11px;
  letter-spacing:.1em;
}
.mk-problem{
  background:var(--mk-bg-2);
}
.mk-center{text-align:center}
.mk-section h2{
  margin:0;
  font-size:clamp(54px,8vw,104px);
}
.mk-redline{
  color:var(--mk-red);
  text-decoration:underline;
  text-decoration-color:var(--mk-red);
  text-decoration-thickness:4px;
  text-underline-offset:6px;
}
.mk-polaroids{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  margin-top:58px;
}
.mk-polaroid{
  min-height:300px;
  padding:28px;
  background:var(--mk-paper);
  color:#111;
  border:1px solid rgba(0,0,0,.15);
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}
.mk-polaroid:nth-child(1){transform:rotate(-2deg)}
.mk-polaroid:nth-child(2){transform:rotate(1.6deg)}
.mk-polaroid:nth-child(3){transform:rotate(-1deg)}
.mk-polaroid h3{
  margin:0 0 14px;
  font-size:26px;
  line-height:1.05;
}
.mk-polaroid p{
  margin:0;
  color:#333;
  line-height:1.55;
}
.mk-card-stamp{
  display:block;
  margin-bottom:22px;
  font-size:46px;
}
.mk-services{
  background:
    radial-gradient(circle at 20% 20%,rgba(255,214,10,.12),transparent 28%),
    var(--mk-bg);
}
.mk-lead{
  max-width:760px;
  margin:20px auto 0;
  color:var(--mk-muted);
  font-size:16px;
  line-height:1.65;
}
.mk-service-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:26px;
  margin-top:54px;
}
.mk-svc-card{
  min-height:540px;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background-size:cover;
  background-position:center;
}
.mk-svc-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.88));
}
.mk-svc-card > *{position:relative;z-index:1}
.mk-film-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  color:var(--mk-yellow);
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.mk-play{
  text-align:center;
  padding:42px 0;
}
.mk-play-button{
  width:72px;
  height:72px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--mk-yellow);
  box-shadow:0 0 40px rgba(255,214,10,.5);
}
.mk-play-button::before{
  content:"";
  width:0;
  height:0;
  border-left:22px solid #000;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
  margin-left:6px;
}
.mk-progress{
  height:3px;
  max-width:280px;
  margin:18px auto 0;
  background:#222;
  overflow:hidden;
}
.mk-progress span{
  display:block;
  height:100%;
  width:35%;
  background:var(--mk-yellow);
  animation:mkProg 4s ease-in-out infinite;
}
@keyframes mkProg{0%,100%{width:18%}50%{width:78%}}
.mk-focus{
  width:180px;
  height:180px;
  margin:38px auto;
  position:relative;
}
.mk-focus::before,
.mk-focus::after{
  content:"";
  position:absolute;
  background:var(--mk-yellow);
}
.mk-focus::before{left:0;right:0;top:50%;height:1px}
.mk-focus::after{top:0;bottom:0;left:50%;width:1px}
.mk-corner{position:absolute;width:24px;height:24px;border-color:var(--mk-yellow)}
.mk-c1{top:0;left:0;border-top:2px solid;border-left:2px solid}
.mk-c2{top:0;right:0;border-top:2px solid;border-right:2px solid}
.mk-c3{bottom:0;left:0;border-bottom:2px solid;border-left:2px solid}
.mk-c4{bottom:0;right:0;border-bottom:2px solid;border-right:2px solid}
.mk-focus-ring{
  position:absolute;
  inset:50% auto auto 50%;
  width:48px;
  height:48px;
  border:1px solid var(--mk-yellow);
  border-radius:50%;
  transform:translate(-50%,-50%);
}
.mk-focus-label{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  color:var(--mk-yellow);
  font-size:10px;
  letter-spacing:.2em;
  white-space:nowrap;
}
.mk-focus-label.top{top:-24px}
.mk-focus-label.bottom{bottom:-24px}
.mk-svc-card h3{
  margin:0 0 16px;
  font-size:clamp(42px,5vw,64px);
}
.mk-svc-card p{
  margin:0;
  color:var(--mk-soft);
  line-height:1.65;
}
.mk-bonus{
  background:var(--mk-yellow);
  color:#0a0a0a;
}
.mk-bonus .mk-eyebrow{
  background:#000;
  color:var(--mk-yellow);
  border:0;
  transform:rotate(-2deg);
}
.mk-bonus h2{color:#0a0a0a}
.mk-bonus .mk-lead{
  color:#0a0a0a;
  max-width:800px;
}
.mk-gifts{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-top:50px;
}
.mk-gift{
  min-height:300px;
  padding:28px;
  background:#0a0a0a;
  color:#fff;
  border:3px solid #0a0a0a;
  box-shadow:10px 10px 0 rgba(0,0,0,.2);
}
.mk-gift:nth-child(2){transform:translateY(-12px) rotate(1deg)}
.mk-gift h3{
  margin:0 0 16px;
  font-size:28px;
  line-height:1.05;
}
.mk-gift p{margin:0;color:#d8d8d8;line-height:1.58}
.mk-note{
  margin:44px auto 0;
  max-width:820px;
  padding:22px 24px;
  background:#000;
  color:var(--mk-yellow);
  text-align:center;
  font-weight:800;
  line-height:1.45;
}
.mk-steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:54px;
}
.mk-step{
  min-height:320px;
  padding:26px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.mk-step-num{
  font-family:"Bebas Neue","Arial Narrow",Impact,sans-serif;
  font-size:76px;
  color:transparent;
  -webkit-text-stroke:1px var(--mk-yellow);
  line-height:.8;
  margin-bottom:22px;
}
.mk-step h3,
.mk-why h3{
  margin:0 0 14px;
  font-size:24px;
  line-height:1.1;
}
.mk-step p,
.mk-why p{
  margin:0;
  color:var(--mk-soft);
  line-height:1.58;
}
.mk-why-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-top:52px;
}
.mk-why{
  padding:30px;
  border:1px solid rgba(255,214,10,.22);
  background:linear-gradient(180deg,rgba(255,214,10,.08),rgba(255,255,255,.03));
}
.mk-ticket{
  margin-top:70px;
  border-top:1px dashed rgba(255,214,10,.45);
  border-bottom:1px dashed rgba(255,214,10,.45);
  padding:22px 0;
  overflow:hidden;
  color:var(--mk-yellow);
  font-size:14px;
  letter-spacing:.22em;
  white-space:nowrap;
}
.mk-ticket span{
  display:inline-block;
  padding-right:36px;
  animation:mkMarquee 18s linear infinite;
}
@keyframes mkMarquee{to{transform:translateX(-50%)}}
.mk-final{
  min-height:88svh;
  display:flex;
  align-items:center;
  text-align:center;
  background:
    radial-gradient(circle at 50% 0,rgba(255,214,10,.16),transparent 34%),
    #0a0a0a;
}
.mk-final h2{
  max-width:1000px;
  margin:0 auto;
  font-size:clamp(58px,10vw,130px);
}
.mk-final p{
  max-width:720px;
  margin:26px auto 0;
  color:var(--mk-soft);
  line-height:1.65;
}
.mk-mega-cta{
  margin-top:36px;
  min-height:66px;
  padding:20px 30px;
  font-size:20px;
}
.mk-floating-wa{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:40;
  background:var(--mk-yellow);
  color:#000;
  padding:14px 18px;
  border:2px solid #000;
  box-shadow:6px 6px 0 #000;
  font-weight:800;
  text-decoration:none;
}
.mk-footer{
  padding:76px 0 34px;
  background:#050505;
  text-align:center;
}
.mk-footer h2{
  margin:0;
  font-size:clamp(54px,8vw,98px);
}
.mk-footer-tag{
  margin:8px 0 46px;
  color:var(--mk-muted);
  font-size:11px;
  letter-spacing:.22em;
}
.mk-footer-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  text-align:center;
}
.mk-footer h4{
  margin:0 0 14px;
  color:var(--mk-yellow);
  font-size:11px;
  letter-spacing:.22em;
}
.mk-footer ul{
  list-style:none;
  padding:0;
  margin:0;
}
.mk-footer li{margin-bottom:8px;color:var(--mk-muted)}
.mk-footer a{text-decoration:none;color:var(--mk-muted)}
.mk-copyright{
  margin-top:52px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#696969;
  font-size:11px;
  letter-spacing:.08em;
}

@media (max-width:900px){
  .mk-wrap{padding:0 24px}
  .mk-section{padding:84px 0}
  .mk-hero{min-height:auto;padding:74px 0 92px}
  .mk-statusbar{align-items:flex-start;flex-direction:column}
  .mk-polaroids,
  .mk-service-grid,
  .mk-gifts,
  .mk-steps,
  .mk-why-grid,
  .mk-footer-grid{
    grid-template-columns:1fr;
  }
  .mk-polaroid,
  .mk-polaroid:nth-child(n),
  .mk-gift,
  .mk-gift:nth-child(n){
    transform:none;
  }
  .mk-svc-card{min-height:500px}
  .mk-take{align-items:flex-start;flex-direction:column}
}

@media (max-width:560px){
  .mk-wrap{padding:0 20px}
  .mk-section{padding:72px 0}
  .mk-hero h1{font-size:clamp(58px,17vw,86px)}
  .mk-section h2{font-size:clamp(46px,14vw,68px)}
  .mk-btns{align-items:stretch}
  .mk-btn{width:100%;padding:16px 18px}
  .mk-polaroid,
  .mk-gift,
  .mk-step,
  .mk-why,
  .mk-svc-card{padding:22px}
  .mk-floating-wa{
    left:16px;
    right:16px;
    bottom:16px;
    text-align:center;
  }
  .mk-page{padding-bottom:74px}
}
