/* MopSuite marketing + legal site — matches the app's dark teal/cyan brand. */
:root {
  --bg: #0b0f1a;
  --bg-2: #0e1424;
  --panel: #141b2d;
  --panel-2: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --text: #eaf0ff;
  --muted: #8a96b4;
  --accent: #34e0a1;
  --accent-2: #29d3ff;
  --accent-grad: linear-gradient(135deg, #34e0a1, #29d3ff);
  --glow: rgba(52, 224, 161, 0.22);
  --radius: 16px;
  --max: 1080px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #16233d 0%, var(--bg) 55%) fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }

/* Nav */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 15, 26, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--text); }
.brand .logo {
  width: 30px; height: 30px; border-radius: 8px; display: block;
  box-shadow: 0 6px 20px rgba(96, 116, 255, 0.35);
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 15px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 11px 18px; border-radius: 11px; font-weight: 600; font-size: 15px;
  border: 1px solid var(--border); color: var(--text); background: var(--panel-2); cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn.primary { background: var(--accent-grad); color: #04121a; border: none; box-shadow: 0 10px 30px var(--glow); }
.btn.lg { padding: 14px 24px; font-size: 16px; }

/* Hero */
.hero { text-align: center; padding: 92px 0 40px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--panel-2); color: var(--muted); font-size: 13px; margin-bottom: 26px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
h1 { font-size: clamp(38px, 6vw, 66px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; }
h1 .grad { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { max-width: 640px; margin: 22px auto 0; font-size: 19px; color: var(--muted); }
.cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta small { display: block; color: var(--muted); font-size: 12px; margin-top: 8px; }
.hero .sub { margin-top: 16px; font-size: 13px; color: var(--muted); }

/* Product showcase */
.showcase { padding: 10px 0 50px; }
.showcase .frame {
  max-width: 1000px; margin: 0 auto; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 70px rgba(52, 224, 161, 0.08);
}
.showcase img { display: block; width: 100%; height: auto; }

/* Sections */
section { padding: 60px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 17px; }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, var(--panel) 0%, rgba(20,27,45,0.6) 100%);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
}
.card .ic {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(52, 224, 161, 0.12); color: var(--accent); font-size: 22px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.plan { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.plan.featured { border-color: rgba(52, 224, 161, 0.5); box-shadow: 0 20px 60px rgba(52,224,161,0.10); position: relative; }
.plan.featured::before {
  content: "Most popular"; position: absolute; top: -12px; right: 24px; background: var(--accent-grad);
  color: #04121a; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.plan h3 { font-size: 20px; }
.price { font-size: 40px; font-weight: 800; margin: 12px 0 2px; }
.price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.plan ul { list-style: none; margin: 20px 0 26px; display: grid; gap: 11px; }
.plan li { display: flex; gap: 10px; color: var(--text); font-size: 15px; }
.plan li::before { content: "✓"; color: var(--accent); font-weight: 800; }
.plan .btn { width: 100%; }

/* Legal pages */
.legal { max-width: 780px; margin: 0 auto; padding: 60px 0; }
.legal h1 { font-size: 40px; text-align: left; }
.legal .updated { color: var(--muted); margin: 8px 0 34px; font-size: 14px; }
.legal h2 { font-size: 22px; margin: 34px 0 12px; }
.legal p, .legal li { color: #cfd8ee; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.notice {
  background: rgba(41, 211, 255, 0.08); border: 1px solid rgba(41, 211, 255, 0.28);
  border-radius: 12px; padding: 16px 18px; color: var(--muted); font-size: 14px; margin-bottom: 30px;
}

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 40px; }
.foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot .links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot a { color: var(--muted); font-size: 14px; }
.foot .brand { font-size: 16px; }

@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .grid, .plans { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
}
