/* Minglo style.css 1e5fa7e3022c */
:root {
  --bg: #F0FBFA;
  --paper: #FFFFFF;
  --ink: #0F2E2E;
  --soft: #5A7878;
  --teal: #0DAFA0;
  --orange: #FF8A4C;
  --line: #D5EAE7;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 15.5px; line-height: 1.6;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--orange); }

/* Top bar */
.m-top {
  background: var(--paper); border-bottom: 2px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.m-top-row {
  max-width: 1280px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 28px;
}
.m-mark { display: flex; gap: 8px; align-items: center; color: var(--ink); font-weight: 800; }
.m-pin {
  display: inline-grid; place-items: center; width: 32px; height: 32px;
  background: var(--teal); color: #fff; border-radius: 8px;
  font-size: 18px; line-height: 1;
}
.m-pin.big { width: 38px; height: 38px; font-size: 22px; }
.m-mark-name { font-size: 19px; letter-spacing: -0.01em; }
.m-nav { display: flex; gap: 22px; flex: 1; }
.m-nav a { color: var(--soft); font-weight: 500; font-size: 14.5px; }
.m-nav a:hover { color: var(--ink); }
.m-top-acts { display: flex; gap: 14px; align-items: center; }
.m-btn-text { background: none; border: 0; color: var(--ink); font-weight: 600; font-size: 14.5px; cursor: pointer; padding: 8px 12px; font-family: inherit; }

.m-cities-bar {
  max-width: 1280px; margin: 0 auto; padding: 12px 24px;
  display: flex; gap: 8px; align-items: center; overflow-x: auto;
  border-top: 1px dashed var(--line);
}
.m-cb-label { font-size: 12.5px; color: var(--soft); margin-right: 4px; flex-shrink: 0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.m-chip {
  background: var(--bg); border: 1.5px solid var(--line);
  padding: 6px 14px; border-radius: 20px;
  font-size: 13.5px; color: var(--ink); cursor: pointer;
  white-space: nowrap; font-family: inherit; font-weight: 500;
  transition: all 0.15s;
}
.m-chip:hover { border-color: var(--teal); color: var(--teal); }
.m-chip.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.m-chip.soon { color: var(--soft); border-style: dashed; cursor: default; }

/* Buttons */
.m-btn {
  display: inline-block; padding: 11px 22px; border-radius: 10px;
  background: var(--teal); color: #fff;
  font-weight: 700; font-size: 14.5px; cursor: pointer;
  border: 0; text-decoration: none;
  font-family: inherit; transition: all 0.15s;
}
.m-btn:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.m-btn.big { padding: 14px 30px; font-size: 16px; }
.m-btn.sm { padding: 6px 14px; font-size: 13px; }
.m-btn.block { width: 100%; display: block; }
.m-btn-ghost {
  display: inline-block; padding: 11px 22px; border-radius: 10px;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink); font-weight: 700;
  cursor: pointer; font-family: inherit; text-decoration: none;
}
.m-btn-ghost.big { padding: 14px 30px; font-size: 16px; }
.m-btn-ghost:hover { background: var(--ink); color: #fff; }

/* Main / hero */
.m-main { max-width: 1280px; margin: 0 auto; padding: 40px 24px 60px; }
.m-hero {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px;
  padding: 32px 0 48px;
}
.m-h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; line-height: 1.1; margin: 0 0 18px; letter-spacing: -0.02em; }
.m-h1.sm { font-size: clamp(28px, 4vw, 42px); }
.m-h1 em { font-style: normal; color: var(--teal); }
.m-h1-mark { color: var(--orange); margin-right: 8px; }
.m-h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin: 0 0 16px; letter-spacing: -0.01em; }
.m-h2.center { text-align: center; margin-bottom: 36px; }
.m-lead { font-size: 17.5px; color: var(--soft); margin: 0 0 28px; max-width: 540px; line-height: 1.55; }
.m-mute { color: var(--soft); }
.m-eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  color: var(--orange); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 14px;
}
.m-hero-acts { display: flex; gap: 14px; flex-wrap: wrap; }
.m-hero-stats {
  background: var(--paper); border: 2px solid var(--line); border-radius: 14px;
  padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  align-self: start;
}
.m-stat { display: flex; flex-direction: column; gap: 2px; }
.m-stat strong { font-size: 22px; font-weight: 800; color: var(--ink); }
.m-stat span { font-size: 12.5px; color: var(--soft); }

/* Bands */
.m-band { padding: 56px 0; }
.m-band-head { margin-bottom: 28px; }
.m-band-head .m-mute { font-size: 14.5px; }

/* City grid */
.m-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.m-card { background: var(--paper); border: 1.5px solid var(--line); border-radius: 14px; overflow: hidden; transition: all 0.15s; }
.m-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,175,160,0.08); }
.m-card-img { height: 100px; background: linear-gradient(135deg, var(--teal), var(--orange)); position: relative; }
.m-card-img.g-msk { background: linear-gradient(135deg, #0DAFA0, #0F8B83); }
.m-card-img.g-spb { background: linear-gradient(135deg, #4A8DAD, #285A77); }
.m-card-img.g-ekb { background: linear-gradient(135deg, #FF8A4C, #C25E2C); }
.m-card-img.g-nsk { background: linear-gradient(135deg, #6FAB8E, #2F7060); }
.m-card-img.g-kzn { background: linear-gradient(135deg, #C29F4D, #8C6B26); }
.m-card-img.g-krd { background: linear-gradient(135deg, #D75A6B, #8E2935); }
.m-card-body { padding: 18px 20px; }
.m-card-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.m-card-row h3 { margin: 0; font-size: 19px; font-weight: 700; }
.m-tag { font-size: 11.5px; font-weight: 700; color: var(--teal); background: rgba(13,175,160,0.1); padding: 3px 10px; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; }
.m-card-meta { font-size: 13px; color: var(--soft); margin: 0 0 10px; }
.m-card p { font-size: 14px; color: var(--soft); margin: 0 0 14px; }
.m-card-link { font-size: 14px; font-weight: 700; color: var(--teal); }

/* Features */
.m-band-features { background: var(--paper); margin: 56px -24px; padding: 64px 24px; border-top: 2px solid var(--line); border-bottom: 2px solid var(--line); }
.m-feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.m-feat { padding: 22px; background: var(--bg); border-radius: 12px; }
.m-feat-icon { font-size: 28px; margin-bottom: 12px; }
.m-feat h4 { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.m-feat p { font-size: 14px; color: var(--soft); margin: 0; }

/* CTA card */
.m-band-cta { padding: 64px 0 32px; }
.m-cta-card {
  background: linear-gradient(135deg, var(--teal), var(--orange));
  color: #fff; border-radius: 18px; padding: 36px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.m-cta-card h2 { color: #fff; margin: 0 0 6px; font-size: 28px; }
.m-cta-card p { color: rgba(255,255,255,0.92); margin: 0; }
.m-cta-card .m-btn { background: #fff; color: var(--ink); }
.m-cta-card .m-btn:hover { background: var(--ink); color: #fff; }

/* Form hero */
.m-form-hero { padding: 24px 0 16px; max-width: 760px; }
.m-form-hero-text { max-width: 580px; }
.m-checks { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 6px; }
.m-checks li { font-size: 14.5px; color: var(--soft); }

/* Bottom-sheet form */
.m-sheet {
  background: var(--paper); border-radius: 24px 24px 0 0;
  padding: 32px 36px 48px; max-width: 760px;
  margin: 24px auto 60px; position: relative;
  border: 2px solid var(--line); border-bottom: 0;
  box-shadow: 0 -12px 40px rgba(13,175,160,0.06);
}
.m-sheet.narrow { max-width: 460px; }
.m-sheet-pull { width: 48px; height: 5px; background: var(--line); border-radius: 4px; margin: 0 auto 24px; }
.m-sheet-title { font-size: 19px; font-weight: 700; margin: 0 0 22px; text-align: center; }

.m-form { display: flex; flex-direction: column; gap: 16px; }
.m-fld { display: flex; flex-direction: column; gap: 6px; }
.m-fld label { font-size: 13px; font-weight: 600; color: var(--soft); letter-spacing: 0.02em; }
.m-fld input, .m-fld select, .m-fld textarea {
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--bg); font-size: 15px; font-family: inherit; color: var(--ink);
  transition: all 0.15s;
}
.m-fld input:focus, .m-fld select:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(13,175,160,0.12); }
.m-fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.m-hint { font-size: 12.5px; color: var(--soft); }
.m-check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--soft); cursor: pointer; line-height: 1.55; padding: 8px 0; }
.m-check input { margin-top: 4px; flex-shrink: 0; width: 17px; height: 17px; }
.m-msg { display: none; padding: 12px 14px; border-radius: 10px; font-size: 14px; }
.m-msg.shown { display: block; }
.m-msg.ok { background: rgba(13,175,160,0.1); color: #0a7a6f; border: 1px solid rgba(13,175,160,0.25); }
.m-msg.err { background: rgba(220,68,82,0.1); color: #b53442; border: 1px solid rgba(220,68,82,0.25); }
.center { text-align: center; }

/* Confirm */
.m-confirm { max-width: 520px; margin: 40px auto; padding: 32px 28px; background: var(--paper); border: 2px solid var(--line); border-radius: 18px; text-align: center; }
.m-confirm-icon { font-size: 56px; margin-bottom: 12px; }
.m-confirm-step { display: flex; gap: 14px; align-items: center; padding: 10px 16px; background: var(--bg); border-radius: 10px; margin: 8px 0; text-align: left; font-size: 14.5px; }
.m-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }

.m-list { padding-left: 22px; }
.m-list li { margin-bottom: 8px; color: var(--soft); }
.m-info { list-style: none; padding: 0; margin: 0; }
.m-info li { padding: 14px 0; border-bottom: 1px solid var(--line); }

/* Footer */
.m-foot { background: var(--ink); color: rgba(255,255,255,0.85); padding: 56px 24px 28px; margin-top: 60px; }
.m-foot-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: auto repeat(3, 1fr); gap: 36px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.m-foot-brand { display: flex; gap: 10px; align-items: center; font-weight: 800; font-size: 19px; color: #fff; }
.m-foot-grid h6 { font-size: 13px; color: var(--orange); margin: 0 0 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.m-foot-grid a { display: block; padding: 4px 0; color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; }
.m-foot-grid a:hover { color: #fff; }
.m-foot-grid p { margin: 0 0 8px; color: rgba(255,255,255,0.6); font-size: 13.5px; }
.m-foot-bottom { max-width: 1280px; margin: 16px auto 0; font-size: 12.5px; color: rgba(255,255,255,0.5); }

/* Cookie / age */
.m-cookie { position: fixed; bottom: 18px; left: 18px; right: 18px; max-width: 540px; margin: 0 auto; background: var(--paper); border: 2px solid var(--line); border-radius: 14px; padding: 14px 18px; z-index: 30; display: flex; gap: 14px; align-items: center; box-shadow: 0 12px 32px rgba(15,46,46,0.12); }
.m-cookie-icon { font-size: 22px; }
.m-cookie p { margin: 0; font-size: 13.5px; flex: 1; }

.m-age { position: fixed; inset: 0; background: rgba(15,46,46,0.7); display: grid; place-items: center; z-index: 40; padding: 22px; }
.m-age-card { background: var(--paper); border-radius: 18px; padding: 36px 32px; max-width: 420px; width: 100%; text-align: center; }
.m-age-bar { width: 60px; height: 6px; background: var(--orange); border-radius: 3px; margin: 0 auto 16px; }
.m-age-card h3 { margin: 0 0 10px; font-size: 21px; }
.m-age-card p { color: var(--soft); margin-bottom: 24px; }
.m-age-actions { display: flex; flex-direction: column; gap: 10px; }

@media (max-width: 880px) {
  .m-nav { display: none; }
  .m-hero { grid-template-columns: 1fr; gap: 32px; }
  .m-hero-stats { grid-template-columns: 1fr 1fr; }
  .m-foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .m-fld-row { grid-template-columns: 1fr; }
  .m-cta-card { flex-direction: column; align-items: flex-start; }
}
