/* Manifest Generate — public landing */

.mg-page {
  --mg-purple: #9b59b6;
  --mg-blue: #3b82f6;
  --mg-gold: #f59e0b;
  --mg-panel: #0e1219;
  --mg-border: rgba(255, 255, 255, .08);
  background: #05070a;
  color: #eef2f7;
}

.mg-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--mg-border);
  background: rgba(5, 7, 10, .85);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50;
}
.mg-nav-brand { font-weight: 700; font-size: 1.05rem; }
.mg-nav-brand em { font-style: normal; color: #8b95a8; font-weight: 500; }
.mg-nav-links {
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.mg-nav-links a {
  padding: 8px 12px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: #9aa8bc; text-decoration: none; transition: color .15s, background .15s;
}
.mg-nav-links a:hover { color: #fff; background: rgba(255, 255, 255, .04); }
.mg-nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
@media (max-width: 768px) {
  .mg-nav { flex-wrap: wrap; }
  .mg-nav-links {
    order: 3; width: 100%; justify-content: center;
    padding-top: 8px; border-top: 1px solid var(--mg-border);
  }
  .mg-nav-actions .mg-btn-ghost { display: none; }
}

.mg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 18px; border-radius: 10px; font-size: 14px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--mg-border);
  background: var(--mg-panel); color: #eef2f7; cursor: pointer;
  transition: transform .12s, box-shadow .12s, border-color .15s;
}
.mg-btn:hover { transform: translateY(-1px); border-color: rgba(255, 255, 255, .16); }
.mg-btn-primary {
  border: 0; color: #fff;
  background: linear-gradient(90deg, var(--mg-blue) 0%, var(--mg-gold) 100%);
  box-shadow: 0 8px 24px rgba(59, 130, 246, .22);
}
.mg-btn-primary:hover { box-shadow: 0 12px 28px rgba(59, 130, 246, .32); }
.mg-btn-ghost { background: transparent; }

.mg-hero {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(24px, 4vw, 48px);
  align-items: center; max-width: 1180px; margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) clamp(20px, 4vw, 40px) clamp(40px, 6vw, 64px);
}
@media (max-width: 900px) {
  .mg-hero { grid-template-columns: 1fr; }
  .mg-hero-visual-wrap { order: -1; }
}
.mg-eyebrow {
  margin: 0 0 12px; font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: #6b7a90;
}
.mg-hero h1 {
  margin: 0 0 16px; font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em;
}
.mg-hero h1 span {
  background: linear-gradient(90deg, var(--mg-blue) 0%, var(--mg-gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mg-lead { margin: 0 0 24px; font-size: 1.05rem; line-height: 1.65; color: #8b95a8; max-width: 520px; }
.mg-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.mg-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.mg-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
  border-radius: 999px; font-size: 12px; font-weight: 600;
  border: 1px solid var(--mg-border); background: rgba(255, 255, 255, .03); color: #b8c4d6;
}
.mg-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, .5);
}
.mg-badge-dot.beta { background: var(--mg-gold); box-shadow: 0 0 8px rgba(245, 158, 11, .45); }

.mg-hero-visual-wrap { position: relative; }
.mg-hero-visual {
  width: 100%; height: auto; display: block; border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(155, 89, 182, .08);
}
.mg-hero-glow {
  position: absolute; inset: 10% -5% -10% -5%; z-index: -1;
  background: radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, .12), transparent 65%),
              radial-gradient(ellipse at 80% 20%, rgba(155, 89, 182, .1), transparent 50%);
  pointer-events: none;
}

.mg-section {
  max-width: 1180px; margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 40px);
}
.mg-section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.mg-section-head h2 { margin: 0 0 10px; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
.mg-section-head p { margin: 0; color: #8b95a8; line-height: 1.6; }

.mg-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .mg-cards { grid-template-columns: 1fr; } }
.mg-card {
  padding: 24px; border-radius: 16px;
  border: 1px solid var(--mg-border);
  background: linear-gradient(180deg, rgba(17, 22, 32, .95) 0%, rgba(10, 12, 18, .9) 100%);
  transition: border-color .15s, transform .15s;
}
.mg-card:hover { border-color: rgba(79, 140, 255, .25); transform: translateY(-2px); }
.mg-card-icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; font-size: 20px; margin-bottom: 16px;
}
.mg-card-icon.purple { background: rgba(155, 89, 182, .15); color: #c084fc; }
.mg-card-icon.gold { background: rgba(245, 158, 11, .12); color: #fbbf24; }
.mg-card-icon.blue { background: rgba(59, 130, 246, .12); color: #60a5fa; }
.mg-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.mg-card p { margin: 0 0 18px; color: #8b95a8; font-size: 14px; line-height: 1.55; }

.mg-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 900px) { .mg-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .mg-steps { grid-template-columns: 1fr; } }
.mg-step {
  padding: 20px; border-radius: 14px; border: 1px solid var(--mg-border);
  background: rgba(0, 0, 0, .25);
}
.mg-step-num {
  display: inline-grid; place-items: center; width: 28px; height: 28px;
  border-radius: 8px; font-size: 13px; font-weight: 700; margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, .2), rgba(245, 158, 11, .15));
  color: #93c5fd;
}
.mg-step h3 { margin: 0 0 6px; font-size: 15px; }
.mg-step p { margin: 0; font-size: 13px; color: #8b95a8; line-height: 1.5; }

.mg-audience {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 700px) { .mg-audience { grid-template-columns: repeat(2, 1fr); } }
.mg-audience-item {
  padding: 16px 18px; border-radius: 12px; text-align: center;
  border: 1px solid var(--mg-border); background: rgba(255, 255, 255, .02);
  font-size: 14px; font-weight: 500; color: #c8d4e8;
}

.mg-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;
}
@media (max-width: 800px) { .mg-split { grid-template-columns: 1fr; } }
.mg-panel {
  padding: 28px; border-radius: 18px;
  border: 1px solid var(--mg-border);
  background: linear-gradient(160deg, rgba(14, 18, 28, .98), rgba(8, 10, 16, .95));
}
.mg-panel h2 { margin: 0 0 10px; font-size: 1.35rem; }
.mg-panel p { margin: 0 0 16px; color: #8b95a8; line-height: 1.6; font-size: 14px; }
.mg-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.mg-tag {
  padding: 5px 10px; border-radius: 8px; font-size: 12px; font-weight: 500;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--mg-border); color: #a8b8cc;
}

.mg-pricing-subhead {
  margin: 0 0 14px; font-size: 1rem; font-weight: 600; color: #c8d4e8;
}
.mg-pricing-table-wrap {
  overflow-x: auto; margin-bottom: 32px;
  border-radius: 14px; border: 1px solid var(--mg-border);
  background: rgba(10, 12, 18, .6);
}
.mg-pricing-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.mg-pricing-table th,
.mg-pricing-table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--mg-border);
}
.mg-pricing-table th {
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: #6b7a90; background: rgba(0, 0, 0, .25);
}
.mg-pricing-table tbody tr:last-child td { border-bottom: 0; }
.mg-pricing-table tbody tr:hover { background: rgba(255, 255, 255, .02); }
.mg-pricing-table tr.is-best { background: rgba(59, 130, 246, .04); }
.mg-table-badge {
  display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  background: rgba(245, 158, 11, .15); color: #fbbf24;
}
.mg-table-link { color: #60a5fa; text-decoration: none; font-weight: 500; white-space: nowrap; }
.mg-table-link:hover { text-decoration: underline; }
.mg-pricing-table--usage td:last-child { font-weight: 600; color: #e8edf5; white-space: nowrap; }

.mg-pricing-note {
  text-align: center; padding: 24px; border-radius: 14px;
  border: 1px solid var(--mg-border); background: rgba(155, 89, 182, .06);
  color: #b8c4d6; font-size: 15px; line-height: 1.6;
}
.mg-pricing-note strong { color: #e8edf5; }

.mg-signin {
  max-width: 440px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px) clamp(56px, 8vw, 80px);
}
.mg-signin .ma-login-inner { max-width: none; }
.mg-footer {
  text-align: center; padding: 28px 20px 40px;
  border-top: 1px solid var(--mg-border); color: #6b7a90; font-size: 13px; line-height: 1.6;
}
.mg-footer strong { color: #c8d4e8; }
