/* Manasanta — shared styles */
:root {
  --bg: #0b1020;
  --bg-soft: #111931;
  --panel: #141d38;
  --border: #24304f;
  --text: #e7ecf7;
  --muted: #9aa7c2;
  --brand: #5b8cff;
  --brand-2: #8b5cf6;
  --accent: #35d0a5;
  --radius: 14px;
  --max: 1080px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(91,140,255,0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(139,92,246,0.14), transparent 55%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,0.72);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand .logo {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 0.95rem;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }

.btn {
  display: inline-block; padding: 12px 20px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.btn-primary:hover { text-decoration: none; opacity: 0.94; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--brand); text-decoration: none; }

/* Hero */
.hero { padding: 92px 0 72px; text-align: center; }
.eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg-soft);
  color: var(--accent); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.1; margin: 0 0 18px; letter-spacing: -0.02em; }
.hero h1 .grad { background: linear-gradient(120deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0 0 12px; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); margin: 0; }

/* Cards grid */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--brand); transform: translateY(-3px); }
.card .icon {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(91,140,255,0.2), rgba(139,92,246,0.2));
  display: grid; place-items: center; font-size: 1.4rem;
}
.card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Pricing */
.price-grid { grid-template-columns: repeat(3, 1fr); }
.price-card { text-align: center; position: relative; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand); }
.price-card .tier { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); font-weight: 700; }
.price-card .amount { font-size: 2.2rem; font-weight: 800; margin: 12px 0 4px; }
.price-card .amount span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 24px; text-align: left; }
.price-card li { padding: 7px 0 7px 26px; position: relative; color: var(--muted); font-size: 0.95rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.badge-pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }

/* Legal / content pages */
.page-hero { padding: 60px 0 24px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 8px; }
.page-hero p { color: var(--muted); margin: 0; }
.prose { max-width: 780px; margin: 0 auto; padding: 40px 0 60px; }
.prose h2 { font-size: 1.4rem; margin: 34px 0 10px; }
.prose h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.prose p, .prose li { color: #c7d0e4; }
.prose ul { padding-left: 22px; }
.prose .updated { color: var(--muted); font-size: 0.9rem; }
.note { background: rgba(53,208,165,0.08); border: 1px solid rgba(53,208,165,0.3); border-radius: 10px; padding: 14px 18px; color: #bfeede; font-size: 0.92rem; }

/* Contact */
.contact-grid { grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-item .ico { font-size: 1.4rem; }
.contact-item .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.contact-item .val { font-weight: 600; }
form.contact-form label { display: block; font-size: 0.9rem; margin: 0 0 6px; color: var(--muted); }
form.contact-form input, form.contact-form textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 16px; border-radius: 10px;
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 0.95rem;
}
form.contact-form input:focus, form.contact-form textarea:focus { outline: none; border-color: var(--brand); }

/* CTA band */
.cta-band { text-align: center; background: linear-gradient(135deg, rgba(91,140,255,0.12), rgba(139,92,246,0.12)); border: 1px solid var(--border); border-radius: 18px; padding: 48px 28px; margin: 20px 0; }
.cta-band h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band p { color: var(--muted); margin: 0 0 24px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding: 48px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-grid h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin: 0 0 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--muted); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--text); }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 320px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 0.88rem; }

@media (max-width: 860px) {
  .grid-3, .price-grid { grid-template-columns: 1fr; }
  .grid-2, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 8px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 22px; width: 100%; }
  .nav-toggle { display: block; }
}
