/* ================================================================
   MedVentures Onboarding — Futuristic UI
   Brand: #006769 · #40A578 · #9DDE8B · #E6FF94 · #CCFFCC
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --c1: #006769;
  --c2: #40A578;
  --c3: #9DDE8B;
  --c4: #E6FF94;
  --c5: #CCFFCC;
  --bg: #030f0f;
  --bg2: #071414;
  --surface: #0d2020;
  --surface2: #112828;
  --border: rgba(64,165,120,0.18);
  --border-bright: rgba(157,222,139,0.35);
  --text: #e8f5f0;
  --text-muted: #7aada0;
  --glow: rgba(64,165,120,0.25);
  --glow-bright: rgba(157,222,139,0.4);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font: 'Outfit', sans-serif;
  --font-alt: 'Space Grotesk', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
.mvo-wrap * { box-sizing: border-box; }

.mvo-wrap {
  font-family: var(--font);
  color: var(--text);
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px 80px;
  position: relative;
  min-height: 100vh;
}

/* Ambient background effect */
.mvo-wrap::before {
  content: '';
  position: fixed;
  top: -30%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,103,105,0.12) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ── Screens ────────────────────────────────────────────────── */
.mvo-screen { display: none; position: relative; z-index: 1; }
.mvo-screen.active { display: block; animation: mvoFadeIn .35s ease; }

@keyframes mvoFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   HOME SCREEN
   ================================================================ */

.mvo-hero {
  text-align: center;
  padding: 64px 20px 48px;
  position: relative;
}

/* Outer ring glow */
.mvo-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.mvo-logo-wrap::before, .mvo-logo-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.mvo-logo-wrap::before {
  width: 136px; height: 136px;
  background: conic-gradient(from 0deg, var(--c1), var(--c2), var(--c3), var(--c4), var(--c2), var(--c1));
  animation: mvoSpin 8s linear infinite;
  opacity: .6;
}
.mvo-logo-wrap::after {
  width: 124px; height: 124px;
  background: var(--bg);
}

@keyframes mvoSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.mvo-logo {
  width: 100px; height: 100px;
  border-radius: 50%;
  display: block;
  position: relative; z-index: 2;
  box-shadow: 0 0 40px rgba(64,165,120,.4), 0 0 80px rgba(0,103,105,.3);
}

.mvo-logo-sm {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border-bright);
  box-shadow: 0 0 16px var(--glow);
}

.mvo-wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}

.mvo-wordmark-text {
  font-family: var(--font-alt);
  font-size: 11px; font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--c3);
  opacity: .7;
}

.mvo-title {
  font-family: var(--font-alt);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.08;
  margin: 0 0 14px;
  background: linear-gradient(135deg, #fff 0%, var(--c3) 50%, var(--c4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mvo-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 400px;
  margin: 0 auto;
}

/* ── Card ───────────────────────────────────────────────────── */
.mvo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mvo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64,165,120,.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Top accent line */
.mvo-card::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c2), transparent);
}

/* ── Form elements ──────────────────────────────────────────── */
.mvo-field-group { margin-bottom: 22px; }

.mvo-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 9px;
  font-family: var(--font-alt);
}
.mvo-label svg { color: var(--c2); }

.mvo-select, .mvo-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
}

.mvo-select:focus, .mvo-input:focus {
  border-color: var(--c2);
  box-shadow: 0 0 0 3px rgba(64,165,120,.15), 0 0 20px rgba(64,165,120,.08);
  background: var(--surface2);
}

.mvo-select option { background: #0d1f1f; color: var(--text); }

.mvo-select-wrap { position: relative; }
.mvo-select-wrap::after {
  content: '';
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--c2);
  pointer-events: none;
}

/* ── Date Pills ─────────────────────────────────────────────── */
.mvo-dates-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}

.mvo-date-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: var(--bg2);
  font-family: var(--font);
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
  display: flex; align-items: center; gap: 7px;
  letter-spacing: .3px;
}

.mvo-date-btn:hover {
  border-color: var(--c2);
  color: var(--c3);
  background: rgba(64,165,120,.06);
}

.mvo-date-btn.selected {
  background: linear-gradient(135deg, var(--c1), var(--c2));
  border-color: transparent;
  color: var(--c4);
  box-shadow: 0 4px 20px rgba(0,103,105,.4), 0 0 0 1px rgba(230,255,148,.2);
  font-weight: 600;
}

/* ── Info Banner ────────────────────────────────────────────── */
.mvo-info-banner {
  background: linear-gradient(135deg, rgba(0,103,105,.2), rgba(64,165,120,.12));
  border: 1px solid rgba(157,222,139,.2);
  border-radius: var(--radius-xs);
  padding: 14px 18px;
  font-size: 14px; color: var(--c3);
  display: flex; align-items: center; gap: 10px;
  line-height: 1.5;
}
.mvo-info-banner svg { flex-shrink: 0; color: var(--c2); }

/* ── Buttons ────────────────────────────────────────────────── */
.mvo-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: var(--font);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .25s;
  letter-spacing: .3px;
  white-space: nowrap;
}

.mvo-btn-primary {
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
  color: var(--c4);
  box-shadow: 0 6px 24px rgba(0,103,105,.4), 0 0 0 1px rgba(230,255,148,.1) inset;
  position: relative; overflow: hidden;
}

.mvo-btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transition: left .5s;
}
.mvo-btn-primary:hover::before { left: 100%; }
.mvo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,103,105,.5), 0 0 0 1px rgba(230,255,148,.15) inset;
  color: var(--c4);
}

.mvo-btn-outline {
  background: transparent;
  color: var(--c3);
  border: 1px solid var(--border-bright);
}
.mvo-btn-outline:hover {
  background: rgba(157,222,139,.08);
  border-color: var(--c3);
  color: var(--c4);
}

.mvo-btn-lg { padding: 16px 36px; font-size: 16px; }

.mvo-home-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px;
}

/* Small utility buttons */
.mvo-btn-sm {
  padding: 7px 16px; border-radius: 20px;
  font-family: var(--font); font-size: 12px; font-weight: 600;
  cursor: pointer; border: none;
  background: var(--c1); color: var(--c4);
  transition: all .2s;
}
.mvo-btn-sm:hover { background: var(--c2); }
.mvo-btn-sm-outline {
  background: transparent; color: var(--c3);
  border: 1px solid var(--border);
}
.mvo-btn-sm-outline:hover { border-color: var(--c2); background: rgba(64,165,120,.06); }

/* ================================================================
   SCANNER SCREEN
   ================================================================ */

.mvo-scanner-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0 24px; gap: 12px;
}

.mvo-back-btn, .mvo-camera-flip {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: var(--surface);
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer; transition: all .2s;
}
.mvo-back-btn:hover, .mvo-camera-flip:hover {
  border-color: var(--c2); color: var(--c3);
  background: rgba(64,165,120,.08);
}

.mvo-session-info {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1; text-align: center;
}

.mvo-session-program {
  font-family: var(--font-alt);
  font-size: 14px; font-weight: 600; color: var(--text);
  letter-spacing: .3px;
}

.mvo-date-badge {
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: var(--c4); padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-family: var(--font-alt);
}

/* ── Viewfinder ─────────────────────────────────────────────── */
.mvo-viewfinder {
  position: relative;
  max-width: 400px; margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 1 / 1;
  box-shadow: 0 0 0 1px var(--border), 0 20px 60px rgba(0,0,0,.6), 0 0 80px rgba(0,103,105,.2);
}

#mvo-video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Corners */
.mvo-scan-frame {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62%; height: 62%;
}

.mvo-corner {
  position: absolute; width: 30px; height: 30px;
}
.mvo-corner::before, .mvo-corner::after {
  content: ''; position: absolute;
  background: var(--c4); border-radius: 2px;
}
.mvo-corner::before { width: 100%; height: 3px; }
.mvo-corner::after  { width: 3px; height: 100%; }
.mvo-corner.tl { top: 0; left: 0; }  .mvo-corner.tl::before,.mvo-corner.tl::after { top:0;left:0; }
.mvo-corner.tr { top: 0; right: 0; } .mvo-corner.tr::before { top:0;right:0; } .mvo-corner.tr::after { top:0;right:0; }
.mvo-corner.bl { bottom:0;left:0; }  .mvo-corner.bl::before { bottom:0;left:0; } .mvo-corner.bl::after { bottom:0;left:0; }
.mvo-corner.br { bottom:0;right:0; } .mvo-corner.br::before { bottom:0;right:0; } .mvo-corner.br::after { bottom:0;right:0; }

/* Corner glow */
.mvo-scan-frame::before {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 30px rgba(230,255,148,.04);
}

/* Scan line */
.mvo-scan-line {
  position: absolute; top: 0; left: 2%; right: 2%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c4), transparent);
  box-shadow: 0 0 12px var(--c4), 0 0 4px #fff;
  animation: mvoScanAnim 2.2s ease-in-out infinite;
}
@keyframes mvoScanAnim {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Viewfinder overlay glow */
.mvo-viewfinder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,103,105,.08) 0%, transparent 40%, transparent 60%, rgba(0,103,105,.08) 100%);
  pointer-events: none;
}

.mvo-scan-hint {
  position: absolute; bottom: 18px; left: 0; right: 0;
  text-align: center;
  color: rgba(230,255,148,.75);
  font-size: 12px; font-weight: 500; letter-spacing: .5px;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
  font-family: var(--font-alt);
}

/* ================================================================
   RESULT SCREEN
   ================================================================ */

.mvo-result-inner {
  text-align: center;
  padding: 72px 24px 48px;
  max-width: 480px; margin: 0 auto;
}

.mvo-result-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.mvo-result-icon::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .2;
  animation: mvoRipple 2s ease-out infinite;
}
.mvo-result-icon::after {
  content: '';
  position: absolute; inset: -18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .08;
  animation: mvoRipple 2s ease-out .5s infinite;
}
@keyframes mvoRipple { to { inset: -30px; opacity: 0; } }

.mvo-result-icon.success {
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: var(--c3);
  box-shadow: 0 12px 40px rgba(0,103,105,.5), 0 0 60px rgba(64,165,120,.2);
  animation: mvoIconPop .5s cubic-bezier(.34,1.56,.64,1) both;
}
.mvo-result-icon.error {
  background: linear-gradient(135deg, #7b1818, #c0392b);
  color: #ff9999;
  box-shadow: 0 12px 40px rgba(192,57,43,.4);
  animation: mvoIconPop .5s cubic-bezier(.34,1.56,.64,1) both;
}
.mvo-result-icon.warning {
  background: linear-gradient(135deg, #7a4800, #e67e22);
  color: #ffd080;
  box-shadow: 0 12px 40px rgba(230,126,34,.4);
  animation: mvoIconPop .5s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes mvoIconPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.mvo-result-icon svg { width: 38px; height: 38px; }

.mvo-result-heading {
  font-family: var(--font-alt);
  font-size: 30px; font-weight: 700;
  color: #fff; margin: 0 0 8px;
  animation: mvoUp .4s ease .2s both;
}
.mvo-result-name {
  font-size: 22px; font-weight: 700;
  color: var(--c3); margin: 0 0 10px;
  animation: mvoUp .4s ease .3s both;
}
.mvo-result-message {
  font-size: 15px; color: var(--text-muted);
  margin: 0 0 40px; line-height: 1.65;
  animation: mvoUp .4s ease .4s both;
}
.mvo-result-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: mvoUp .4s ease .5s both;
}
.mvo-email-status {
  margin: 0 0 20px;
  font-size: 12px; color: var(--text-muted);
  animation: mvoUp .4s ease .45s both;
}
.mvo-email-status.ok  { color: var(--c3); }
.mvo-email-status.err { color: #f0807a; }

@keyframes mvoUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ================================================================
   LOADING OVERLAY
   ================================================================ */

.mvo-loading-overlay {
  position: fixed; inset: 0;
  background: rgba(3,15,15,.88);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999;
  color: var(--c3);
  font-size: 14px; letter-spacing: .5px;
  font-family: var(--font-alt);
}

.mvo-spinner {
  width: 48px; height: 48px;
  border: 2px solid rgba(64,165,120,.15);
  border-top-color: var(--c2);
  border-radius: 50%;
  animation: mvoSpin .75s linear infinite;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(64,165,120,.2);
}

/* ================================================================
   PAGE HEADER (ID Cards / Logs pages)
   ================================================================ */

.mvo-page-header {
  display: flex; align-items: center; gap: 18px;
  padding: 48px 0 32px;
}
.mvo-page-title {
  font-family: var(--font-alt);
  font-size: 24px; font-weight: 700;
  color: #fff; margin: 0 0 4px;
  letter-spacing: -.3px;
}
.mvo-page-desc { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ================================================================
   TABS
   ================================================================ */

.mvo-tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px; flex-wrap: wrap;
}

.mvo-tab {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 20px;
  border: none; background: transparent;
  font-family: var(--font); font-size: 13px; font-weight: 500;
  color: var(--text-muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all .2s; border-radius: 8px 8px 0 0;
  letter-spacing: .2px;
}
.mvo-tab:hover { color: var(--c3); background: rgba(64,165,120,.06); }
.mvo-tab.active { color: var(--c4); font-weight: 700; border-bottom-color: var(--c2); }

.mvo-tab-content { display: none; }
.mvo-tab-content.active { display: block; animation: mvoFadeIn .3s ease; }

/* ================================================================
   UPLOAD ZONE
   ================================================================ */

.mvo-upload-zone {
  border: 1px dashed var(--border-bright);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,103,105,.05), rgba(64,165,120,.03));
  cursor: pointer; transition: all .25s; margin-bottom: 24px;
}
.mvo-upload-zone:hover, .mvo-upload-zone.drag-over {
  border-color: var(--c2);
  background: rgba(64,165,120,.07);
  box-shadow: 0 0 40px rgba(64,165,120,.08) inset;
}
.mvo-upload-zone p { color: var(--text-muted); margin: 14px 0 6px; font-size: 15px; }
.mvo-upload-zone span { color: var(--text-muted); font-size: 13px; display: block; margin-bottom: 14px; opacity: .6; }

.mvo-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:600px) { .mvo-field-row { grid-template-columns: 1fr; } }

/* ================================================================
   TABLE
   ================================================================ */

.mvo-section-title {
  font-family: var(--font-alt); font-size: 17px; font-weight: 700;
  color: var(--text); margin: 0 0 18px;
  display: flex; align-items: center; gap: 9px;
}
.mvo-section-title svg { color: var(--c2); }

.mvo-section-title-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px; flex-wrap: wrap;
}
.mvo-section-title-row .mvo-section-title { margin-bottom: 0; }

.mvo-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.mvo-table { width: 100%; border-collapse: collapse; font-size: 13px; }

.mvo-table th {
  background: var(--surface2);
  color: var(--text-muted);
  padding: 12px 16px; text-align: left;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-alt);
  white-space: nowrap;
}
.mvo-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(64,165,120,.06);
  color: var(--text);
}
.mvo-table tr:last-child td { border-bottom: none; }
.mvo-table tr:hover td { background: rgba(64,165,120,.04); }
.mvo-table input[type=checkbox] { accent-color: var(--c2); width: 16px; height: 16px; }

/* ================================================================
   LIVE SEND FEED
   ================================================================ */

.mvo-send-feed {
  max-height: 320px; overflow-y: auto;
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 16px; font-family: 'Courier New', monospace; font-size: 13px;
  border: 1px solid var(--border);
}
.mvo-feed-item {
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; gap: 10px;
  animation: mvoFadeIn .3s ease;
}
.mvo-feed-item:last-child { border-bottom: none; }
.mvo-feed-sent  { color: var(--c3); }
.mvo-feed-error { color: #f07070; }
.mvo-feed-time  { color: rgba(255,255,255,.2); font-size: 11px; margin-left: auto; }
.mvo-feed-email { color: var(--c4); }
.mvo-send-feed::-webkit-scrollbar { width: 4px; }
.mvo-send-feed::-webkit-scrollbar-track { background: rgba(255,255,255,.02); }
.mvo-send-feed::-webkit-scrollbar-thumb { background: rgba(64,165,120,.25); border-radius: 2px; }

/* ================================================================
   BADGES
   ================================================================ */

.mvo-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  font-family: var(--font-alt);
}
.mvo-badge-success { background: rgba(64,165,120,.15); color: var(--c3); }
.mvo-badge-error   { background: rgba(192,57,43,.18);  color: #f09090; }
.mvo-badge-warning { background: rgba(230,126,34,.15); color: #f0b06a; }
.mvo-badge-info    { background: rgba(0,103,105,.2);   color: var(--c3); }

/* ================================================================
   MISC
   ================================================================ */

.mvo-hint {
  color: var(--text-muted); font-size: 13px;
  margin: 0 0 18px; line-height: 1.6;
}
.mvo-hint code {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 4px; padding: 1px 7px; font-size: 12px; color: var(--c3);
}

.mvo-alert {
  padding: 14px 18px; border-radius: var(--radius-xs);
  font-size: 14px; display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.mvo-alert-success { background: rgba(64,165,120,.1); border: 1px solid rgba(64,165,120,.25); color: var(--c3); }
.mvo-alert-error   { background: rgba(192,57,43,.1);  border: 1px solid rgba(192,57,43,.25);  color: #f09090; }

.mvo-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:600px) { .mvo-form-grid { grid-template-columns: 1fr; } }

/* Settings page override */
.mvo-settings-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 32px; margin-bottom: 20px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width:500px) {
  .mvo-title { font-size: 28px; }
  .mvo-card  { padding: 20px 16px; }
  .mvo-hero  { padding: 48px 12px 36px; }
  .mvo-btn   { padding: 12px 20px; font-size: 13px; }
  .mvo-home-actions { flex-direction: column; }
  .mvo-home-actions .mvo-btn { width: 100%; justify-content: center; }
  .mvo-scanner-header { flex-wrap: wrap; }
}
