/* MECOFOX landing page */
:root {
  --bg: #0c0e14;
  --panel: #151823;
  --panel-2: #1c2030;
  --line: #262b3d;
  --text: #e8eaf2;
  --muted: #8b91a7;
  --accent: #6c5ce7;
  --accent-2: #8e7bff;
  --green: #2ecc71;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.btn:hover { border-color: var(--accent); }
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn.ghost:hover { background: var(--panel-2); }
.btn.lg { padding: 0.85rem 1.6rem; font-size: 1.05rem; border-radius: 12px; }
.btn.wide { display: block; width: 100%; text-align: center; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem clamp(1rem, 5vw, 3rem);
  background: rgba(12, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  letter-spacing: 0.12em;
}
.nav-brand img { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; }
.nav-links { display: flex; gap: 1.4rem; margin-left: auto; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 0.6rem; }
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(4rem, 10vw, 7rem) 1.5rem clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(800px 500px at 20% 0%, rgba(108, 92, 231, 0.22), transparent),
    radial-gradient(600px 400px at 85% 60%, rgba(46, 204, 113, 0.07), transparent),
    var(--bg);
  text-align: center;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.eyebrow {
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.hero .sub {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 2rem;
}
.hero-cta {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero-note { color: var(--muted); font-size: 0.85rem; }

/* ---------- sections ---------- */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 5vw, 3rem);
  max-width: 1180px;
  margin: 0 auto;
}
.section.alt {
  max-width: none;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section.alt > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ---------- team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.team-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  transition: border-color 0.15s, transform 0.15s;
}
.team-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.team-card img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
  border: 2px solid var(--line);
}
.team-card h3 { font-size: 1.05rem; }
.team-card .role {
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.2rem 0 0.6rem;
}
.team-card p:last-child { color: var(--muted); font-size: 0.88rem; }

/* ---------- how it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.step {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(108, 92, 231, 0.12), transparent 40%), var(--panel);
  box-shadow: 0 0 40px rgba(108, 92, 231, 0.15);
}
.price-card .flag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.price {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.price-sub { color: var(--muted); font-size: 0.85rem; margin: 0.3rem 0 1.2rem; }
.price-card ul {
  list-style: none;
  margin-bottom: 1.6rem;
  flex: 1;
}
.price-card li {
  padding: 0.42rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}
.price-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  margin-right: 0.55rem;
}
.price-card li:last-child { border-bottom: none; }

/* ---------- final cta ---------- */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 1.6rem; }

/* ---------- footer ---------- */
.footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.6rem clamp(1rem, 5vw, 3rem);
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-brand img { width: 22px; height: 22px; border-radius: 6px; object-fit: cover; }
.footer nav { margin-left: auto; display: flex; gap: 1.2rem; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }


/* ---- launch additions (2026-09-12) ---- */
.pricing-grid-2{max-width:760px;margin-left:auto;margin-right:auto}
.pricing-note{margin-top:28px;font-size:14px;opacity:.85}
.proof{padding-top:0}
.proof-card{max-width:880px;margin:0 auto;border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:26px 28px;background:rgba(255,255,255,.03)}
.proof-card h2{margin:6px 0 8px;font-size:1.5rem}
.proof-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:14px;margin-top:18px}
.proof-stats div{border-top:1px solid rgba(255,255,255,.12);padding-top:10px}
.proof-stats b{display:block;font-size:1.8rem;font-variant-numeric:tabular-nums}
.proof-stats span{font-size:.8rem;opacity:.7}
.proof-upd{margin-top:16px;font-size:.8rem;opacity:.75}
