/* ============================================================
   MetroMeet — waitlist landing page
   Recreated from MetroMeet.dc.html (Claude Design handoff).
   Dark, premium, "alive" 2026 homage. Fonts: Clash Display
   (headings), Satoshi (body), Fredoka (wordmark).
   ============================================================ */

:root {
  /* Surfaces */
  --bg:            #07070c;
  --surface:       #0d0d14;
  --surface-final: #0b0b12;

  /* Brand */
  --cyan:    #34e0ee;
  --cyan-bg: rgba(34, 211, 238, .16);
  --pink:    #ec4899;
  --pink-bg: rgba(236, 72, 153, .18);
  --purple:  #a78bfa;
  --yellow:  #f5c842;
  --grad:    linear-gradient(100deg, #34e0ee, #ec4899);

  /* Text */
  --t-100: #fff;
  --t-72:  rgba(255, 255, 255, .72);
  --t-66:  rgba(255, 255, 255, .66);
  --t-60:  rgba(255, 255, 255, .60);
  --t-56:  rgba(255, 255, 255, .56);
  --t-55:  rgba(255, 255, 255, .55);
  --t-50:  rgba(255, 255, 255, .50);
  --t-40:  rgba(255, 255, 255, .40);

  /* Lines / fills */
  --line:    rgba(255, 255, 255, .09);
  --line-12: rgba(255, 255, 255, .12);
  --line-14: rgba(255, 255, 255, .14);
  --line-16: rgba(255, 255, 255, .16);
  --fill-02: rgba(255, 255, 255, .025);
  --fill-03: rgba(255, 255, 255, .03);
  --fill-04: rgba(255, 255, 255, .04);
  --fill-06: rgba(255, 255, 255, .06);

  --maxw: 1200px;

  --font-body: 'Satoshi', system-ui, -apple-system, sans-serif;
  --font-head: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  --font-logo: 'Fredoka', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

::selection { background: rgba(236, 72, 153, .35); color: #fff; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--t-100);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.mm-root {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; }

input::placeholder { color: rgba(255, 255, 255, .38); }
input:focus { outline: none; }

img { display: block; max-width: 100%; }

/* ---------- Animations ---------- */
@keyframes mmFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes mmRise  { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes mmPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

/* ---------- Ambient background ---------- */
.mm-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.mm-blob { position: absolute; border-radius: 50%; filter: blur(20px); }
.mm-blob--cyan {
  top: -280px; left: -200px; width: 680px; height: 680px;
  background: radial-gradient(circle, var(--cyan-bg), transparent 65%);
}
.mm-blob--pink {
  top: 120px; right: -260px; width: 720px; height: 720px;
  background: radial-gradient(circle, var(--pink-bg), transparent 65%);
}
.mm-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 78%);
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 78%);
}

/* ---------- Demo-mode banner ---------- */
.mm-demobar {
  position: relative; z-index: 6;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 20px;
  font-size: 13px; color: var(--t-72);
  background: rgba(236, 72, 153, .10);
  border-bottom: 1px solid rgba(236, 72, 153, .25);
  text-align: center;
}
.mm-demobar[hidden] { display: none; }
.mm-demobar strong { color: #fff; }
.mm-demobar-btn {
  border: 1px solid var(--line-16); background: var(--fill-04); color: #fff;
  font-family: inherit; font-size: 12.5px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px; cursor: pointer;
}
.mm-demobar-btn:hover { background: var(--fill-06); }

/* ---------- Nav ---------- */
.mm-nav {
  position: relative; z-index: 5;
  max-width: var(--maxw); margin: 0 auto; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.mm-logo {
  font-family: var(--font-logo); font-weight: 600; font-size: 26px;
  letter-spacing: -.5px; text-decoration: none;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mm-logo--sm { font-size: 22px; }
.mm-nav-links { display: flex; align-items: center; gap: 28px; }
.mm-nav-link { color: var(--t-60); text-decoration: none; font-size: 15px; font-weight: 500; }
.mm-nav-link:hover { color: #fff; }
.mm-nav-cta {
  color: #fff; text-decoration: none; font-size: 15px; font-weight: 600;
  padding: 10px 18px; border: 1px solid var(--line-16); border-radius: 999px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.mm-nav-cta:hover { background: var(--fill-04); }

/* ---------- Shared section + type ---------- */
.mm-section { position: relative; z-index: 4; max-width: var(--maxw); margin: 0 auto; padding: 70px 32px; }
.mm-section--bleed { padding-left: 0; padding-right: 0; }
.mm-section--faq { max-width: 880px; padding: 50px 32px 30px; }
.mm-section--final { padding: 30px 32px 110px; }

.mm-eyebrow {
  font-size: 14px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.mm-eyebrow--cyan { color: rgba(52, 224, 238, .85); }
.mm-eyebrow--pink { color: rgba(236, 72, 153, .85); }

.mm-h1 {
  font-family: var(--font-head); font-weight: 600; font-size: 66px;
  line-height: 1.02; letter-spacing: -1.5px; margin-bottom: 24px;
}
.mm-h2 {
  font-family: var(--font-head); font-weight: 600; font-size: 42px;
  line-height: 1.08; letter-spacing: -1px;
}
.mm-h2--sm { font-size: 38px; letter-spacing: -.8px; line-height: 1.1; }
.mm-h2--center { font-size: 34px; letter-spacing: -.8px; text-align: center; margin-bottom: 36px; }

.mm-section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.mm-section-head--narrow { max-width: 600px; margin-bottom: 44px; }
.mm-section-sub { font-size: 17px; line-height: 1.6; color: var(--t-55); margin-top: 16px; }
.mm-section-sub--tight { margin-top: 8px; font-size: 16px; }

.mm-accent-cyan { color: var(--cyan); }
.mm-strong { color: #fff; font-weight: 600; }

/* ---------- Buttons ---------- */
.mm-btn {
  border: none; cursor: pointer; font-family: inherit; font-weight: 700;
  border-radius: 12px; font-size: 15px;
}
.mm-btn--primary {
  color: var(--bg); padding: 0 24px; background: var(--grad); white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease;
}
.mm-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(236, 72, 153, .6); }
.mm-btn--ghost {
  border: 1px solid var(--line-14); background: var(--fill-04); color: var(--t-72);
  font-weight: 600; padding: 14px;
}
.mm-btn--ghost:hover { background: var(--fill-06); color: #fff; }

/* ---------- Hero ---------- */
.mm-hero {
  position: relative; z-index: 4; max-width: var(--maxw); margin: 0 auto;
  padding: 56px 32px 90px; display: flex; align-items: center; gap: 72px;
}
.mm-hero-left { flex: 1; min-width: 0; }

.mm-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  border: 1px solid var(--line-12); border-radius: 999px; background: var(--fill-03);
  font-size: 13px; color: var(--t-66); font-weight: 500; margin-bottom: 28px;
}
.mm-badge-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(120deg, #34e0ee, #ec4899);
  font-size: 11px; font-weight: 700; color: var(--bg);
}

.mm-hero-sub {
  font-size: 19px; line-height: 1.6; color: var(--t-60);
  max-width: 510px; margin-bottom: 36px;
}

/* Capture / form */
.mm-capture { max-width: 460px; }
.mm-form {
  display: flex; flex-direction: column; gap: 10px;
  padding: 8px; border: 1px solid var(--line-14); border-radius: 18px;
  background: var(--fill-04); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.mm-form-row { display: flex; gap: 10px; }
.mm-input {
  border: none; background: var(--fill-04); border-radius: 12px; color: #fff;
  font-size: 16px; font-family: inherit; padding: 13px 14px; width: 100%;
}
.mm-input--email { flex: 1; min-width: 0; }
.mm-form .mm-btn--primary { flex: none; }
.mm-input[aria-invalid="true"] { box-shadow: inset 0 0 0 1px rgba(236, 72, 153, .55); }

.mm-capture-note { font-size: 13px; color: var(--t-40); margin-top: 12px; padding-left: 6px; }
.mm-consent { font-size: 12px; color: var(--t-40); margin-top: 8px; padding-left: 6px; line-height: 1.5; }
.mm-consent a { color: var(--t-60); text-decoration: underline; }
.mm-consent--center { text-align: center; padding-left: 0; margin-top: 16px; }

/* Success state */
.mm-success {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; border: 1px solid rgba(52, 224, 238, .28); border-radius: 18px;
  background: rgba(52, 224, 238, .06); animation: mmRise .5s ease both;
}
.mm-success[hidden] { display: none; }
.mm-success-check {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(120deg, #34e0ee, #ec4899);
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--bg);
}
.mm-success-title { font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.mm-success-text { font-size: 14px; color: var(--t-60); }
.mm-em { color: #fff; }

.mm-share { margin-top: 14px; }
.mm-share[hidden] { display: none; }
.mm-share-label { display: block; font-size: 12.5px; color: var(--t-55); margin-bottom: 8px; }
.mm-share-row { display: flex; gap: 8px; }
.mm-share-input {
  flex: 1; min-width: 0; border: 1px solid var(--line-12); background: rgba(0, 0, 0, .25);
  border-radius: 10px; color: var(--t-72); font-family: inherit; font-size: 13px; padding: 9px 11px;
}
.mm-share-copy {
  flex: none; border: none; cursor: pointer; font-family: inherit; font-weight: 700;
  font-size: 13px; color: var(--bg); padding: 0 16px; border-radius: 10px; background: var(--grad);
}

/* Social proof */
.mm-proof { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.mm-avatars { display: flex; }
.mm-avatars img {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg);
  object-fit: cover; margin-left: -12px;
}
.mm-avatars img:first-child { margin-left: 0; }
.mm-proof-text { font-size: 14px; color: var(--t-55); }
.mm-proof-num { color: #fff; font-weight: 700; }

/* Hero floating card */
.mm-hero-right { width: 380px; flex: none; position: relative; }
.mm-card-glow {
  position: absolute; inset: -1px; border-radius: 30px;
  background: linear-gradient(150deg, rgba(52, 224, 238, .5), rgba(236, 72, 153, .5));
  filter: blur(2px); opacity: .5;
}
.mm-profile {
  position: relative; border-radius: 28px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1);
  background: var(--surface); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8);
  animation: mmFloat 6s ease-in-out infinite;
}
.mm-profile-photo { position: relative; height: 420px; }
.mm-profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.mm-profile-fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 13, 20, .95) 6%, transparent 48%); }
.mm-profile-live {
  position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px; background: rgba(7, 7, 12, .55);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); font-size: 12px; font-weight: 600;
}
.mm-profile-meta { position: absolute; left: 20px; bottom: 18px; }
.mm-profile-name { font-family: var(--font-head); font-weight: 600; font-size: 24px; letter-spacing: -.5px; }
.mm-profile-loc { font-size: 14px; color: var(--t-60); margin-top: 2px; }
.mm-profile-actions { display: flex; gap: 12px; padding: 18px 20px 22px; }
.mm-profile-actions .mm-btn--ghost { flex: 1; }
.mm-btn--admire { flex: 1.4; padding: 14px; }

/* Dots */
.mm-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); display: inline-block; }
.mm-dot--cyan { box-shadow: 0 0 8px var(--cyan); }
.mm-dot--pulse { width: 8px; height: 8px; animation: mmPulse 2s ease-in-out infinite; }

/* ---------- Emotional beat ---------- */
.mm-beat { position: relative; z-index: 4; max-width: 820px; margin: 0 auto; padding: 40px 32px 30px; text-align: center; }
.mm-beat-text {
  font-family: var(--font-head); font-weight: 500; font-size: 30px; line-height: 1.32;
  letter-spacing: -.6px; color: rgba(255, 255, 255, .92);
}

/* ---------- Feature grid ---------- */
.mm-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.mm-feature { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--fill-02); }
.mm-feature-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.mm-feature-icon--cyan   { background: rgba(52, 224, 238, .12);  color: var(--cyan); }
.mm-feature-icon--pink   { background: rgba(236, 72, 153, .12);  color: var(--pink); }
.mm-feature-icon--purple { background: rgba(167, 139, 250, .14); color: var(--purple); }
.mm-feature-icon--yellow { background: rgba(245, 200, 66, .14);  color: var(--yellow); }
.mm-feature-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.3px; }
.mm-feature-text { font-size: 15px; line-height: 1.6; color: var(--t-56); }

/* ---------- Around you (people rail) ---------- */
.mm-around-head {
  padding: 0 32px; display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 30px; max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
.mm-online { font-size: 14px; color: var(--t-50); display: inline-flex; align-items: center; gap: 8px; }
.mm-people {
  display: flex; gap: 18px; overflow-x: auto; padding: 6px 32px 24px;
  scrollbar-width: none; max-width: var(--maxw); margin: 0 auto;
}
.mm-people::-webkit-scrollbar { display: none; }
.mm-person { flex: none; width: 208px; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.mm-person-photo { position: relative; height: 248px; }
.mm-person-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #15151d; }
.mm-person-fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 13, 20, .92), transparent 50%); }
.mm-person-dot { position: absolute; top: 12px; right: 12px; width: 11px; height: 11px; border-radius: 50%; background: var(--cyan); border: 2px solid var(--surface); box-shadow: 0 0 8px rgba(52, 224, 238, .9); }
.mm-person-meta { position: absolute; left: 14px; bottom: 12px; }
.mm-person-name { font-weight: 700; font-size: 17px; letter-spacing: -.2px; }
.mm-person-hood { font-size: 13px; color: var(--t-60); margin-top: 1px; }
.mm-person-tags { padding: 13px 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.mm-tag { font-size: 12px; color: var(--t-72); padding: 4px 10px; border-radius: 999px; background: var(--fill-06); }

/* ---------- Values grid ---------- */
.mm-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.mm-values-intro { grid-column: 1 / -1; max-width: 560px; margin-bottom: 18px; }
.mm-values-intro .mm-section-sub { font-size: 17px; margin-top: 14px; }
.mm-value { padding: 30px; border-radius: 22px; border: 1px solid var(--line); background: var(--fill-02); }
.mm-value--cyan { background: linear-gradient(160deg, rgba(52, 224, 238, .06), transparent); }
.mm-value--pink { background: linear-gradient(160deg, rgba(236, 72, 153, .06), transparent); }
.mm-value-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.3px; }
.mm-value-text { font-size: 15.5px; line-height: 1.6; color: var(--t-56); }

/* ---------- Geography / leaderboard ---------- */
.mm-geo { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.mm-geo-left .mm-section-sub { margin-bottom: 22px; font-size: 16.5px; line-height: 1.65; color: rgba(255, 255, 255, .58); }
.mm-steps { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.mm-steps li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; line-height: 1.5; color: var(--t-72); }
.mm-step-num {
  flex: none; width: 24px; height: 24px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
}
.mm-step-num--cyan   { background: rgba(52, 224, 238, .14);  color: var(--cyan); }
.mm-step-num--pink   { background: rgba(236, 72, 153, .14);  color: var(--pink); }
.mm-step-num--purple { background: rgba(167, 139, 250, .16); color: var(--purple); }

.mm-board { border: 1px solid var(--line-12); border-radius: 24px; background: var(--fill-02); padding: 24px; }
.mm-board-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mm-board-title { font-weight: 700; font-size: 17px; letter-spacing: -.2px; }
.mm-board-live { font-size: 12px; color: var(--t-50); display: inline-flex; align-items: center; gap: 7px; }
.mm-board-list { display: flex; flex-direction: column; gap: 16px; }
.mm-board-foot { font-size: 12.5px; color: var(--t-40); margin-top: 20px; text-align: center; }

.mm-rank-row { display: flex; align-items: center; gap: 14px; }
.mm-rank-num { flex: none; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--t-40); width: 24px; }
.mm-rank-body { flex: 1; min-width: 0; }
.mm-rank-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.mm-rank-name { font-weight: 600; font-size: 15px; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.mm-rank-flag { font-size: 10px; font-weight: 700; letter-spacing: .4px; color: var(--cyan); border: 1px solid rgba(52, 224, 238, .4); border-radius: 5px; padding: 1px 6px; }
.mm-rank-count { font-size: 13px; color: var(--t-50); }
.mm-rank-track { height: 7px; border-radius: 99px; background: rgba(255, 255, 255, .07); overflow: hidden; }
.mm-rank-fill { height: 100%; border-radius: 99px; transition: width .8s cubic-bezier(.16, 1, .3, 1); }

/* ---------- Perks ---------- */
.mm-perks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.mm-perk { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--fill-02); }
.mm-perk-title { font-size: 18px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.2px; }
.mm-perk-text { font-size: 14.5px; line-height: 1.55; color: var(--t-55); }

/* ---------- FAQ ---------- */
.mm-faq { display: flex; flex-direction: column; gap: 14px; }
.mm-faq-item { padding: 22px 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--fill-02); }
.mm-faq-q { font-weight: 700; font-size: 16.5px; margin-bottom: 7px; }
.mm-faq-a { font-size: 15px; line-height: 1.55; color: var(--t-56); }

/* ---------- Final CTA ---------- */
.mm-final {
  position: relative; border-radius: 32px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1);
  padding: 72px 40px; text-align: center; background: var(--surface-final);
}
.mm-final-glow {
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 420px; background: radial-gradient(circle, rgba(236, 72, 153, .22), transparent 65%);
  pointer-events: none;
}
.mm-final-inner { position: relative; z-index: 2; }
.mm-h2--final { font-size: 48px; letter-spacing: -1.2px; line-height: 1.05; margin-bottom: 18px; }
.mm-final-sub { font-size: 18px; color: rgba(255, 255, 255, .58); max-width: 460px; margin: 0 auto 34px; }
.mm-form--final { flex-direction: column; max-width: 440px; margin: 0 auto; }
.mm-final-success {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 24px; border-radius: 16px;
  border: 1px solid rgba(52, 224, 238, .3); background: rgba(52, 224, 238, .06); font-weight: 600;
}
.mm-final-success[hidden] { display: none; }

/* ---------- Footer ---------- */
.mm-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, .07);
}
.mm-footer-meta { font-size: 13px; color: var(--t-40); }
.mm-footer-meta a { color: var(--t-55); text-decoration: none; }
.mm-footer-meta a:hover { color: #fff; text-decoration: underline; }

/* ---------- Config modal ---------- */
.mm-modal {
  position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(0, 0, 0, .6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.mm-modal[hidden] { display: none; }
.mm-modal-card { width: 100%; max-width: 440px; background: var(--surface); border: 1px solid var(--line-12); border-radius: 20px; padding: 28px; }
.mm-modal-title { font-family: var(--font-head); font-weight: 600; font-size: 22px; margin-bottom: 8px; }
.mm-modal-text { font-size: 14px; color: var(--t-56); line-height: 1.5; margin-bottom: 18px; }
.mm-modal-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--t-60); margin: 14px 0 6px; }
.mm-modal-input { width: 100%; border: 1px solid var(--line-12); background: var(--fill-04); border-radius: 10px; color: #fff; font-family: inherit; font-size: 14px; padding: 11px 13px; }
.mm-modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px; }
.mm-modal-actions .mm-btn { padding: 11px 18px; }
.mm-modal-actions .mm-btn--primary { padding: 11px 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .mm-hero { flex-direction: column; gap: 48px; padding-bottom: 60px; }
  .mm-hero-right { width: 100%; max-width: 420px; }
  .mm-h1 { font-size: 48px; }
  .mm-geo { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 620px) {
  .mm-nav { padding: 20px; }
  .mm-nav-links { gap: 14px; }
  .mm-nav-link { display: none; }
  .mm-section { padding: 48px 20px; }
  .mm-hero { padding: 32px 20px 48px; }
  .mm-beat { padding: 24px 20px; }
  .mm-beat-text { font-size: 23px; }
  .mm-h1 { font-size: 40px; letter-spacing: -1px; }
  .mm-h2 { font-size: 32px; }
  .mm-h2--final { font-size: 34px; }
  .mm-section-head { margin-bottom: 44px; }
  .mm-around-head { padding: 0 20px; }
  .mm-people { padding: 6px 20px 24px; }
  .mm-final { padding: 48px 24px; }
  .mm-form-row { flex-direction: column; }
  .mm-form .mm-btn--primary { padding: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .mm-rank-fill { transition: none; }
}
