/* ============================================================
   mktg.css — Shared base styles for Measure the Mindset mktg
   ============================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* TOKENS */
:root {
  --bg: #0D1321;
  --bg-card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.09);
  --border-light: rgba(255,255,255,0.06);
  --text: #F0EDE6;
  --text-muted: rgba(240,237,230,0.55);
  --text-faint: rgba(240,237,230,0.35);
  --teal: #3DC9A8;
  --teal-bg: rgba(61,201,168,0.08);
  --teal-border: rgba(61,201,168,0.25);
  --green: #3D8C5A;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* BACKGROUND EFFECTS */
.grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none; z-index: 0;
}

.glow-1 {
  position: fixed; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,140,120,0.09) 0%, transparent 70%);
  top: -150px; right: -100px; pointer-events: none; z-index: 0;
}

.glow-2 {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,70,180,0.08) 0%, transparent 70%);
  bottom: 200px; left: -100px; pointer-events: none; z-index: 0;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 0.5px solid var(--border-light);
  background: rgba(13,19,33,0.92);
  backdrop-filter: blur(12px);
}

.nav-logo { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--teal); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 13px; color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }

.btn-nav {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--bg); background: var(--teal); border: none;
  padding: 8px 20px; border-radius: 6px; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
}
.btn-nav:hover { background: #52d4b5; }

/* LAYOUT */
.inner { position: relative; z-index: 1; max-width: 1060px; margin: 0 auto; padding: 0 2rem; }

/* EYEBROW */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

/* PAGE HEADER (pricing + how_it_works inner pages) */
.page-header { padding: 4rem 0 3rem; text-align: center; position: relative; z-index: 1; }
.page-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-headline em { font-style: italic; color: var(--teal); }
.page-subhead { font-size: 15px; font-weight: 300; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* BUTTONS */
.btn-primary {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--bg); background: var(--teal); border: none;
  padding: 13px 28px; border-radius: 7px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #52d4b5; transform: translateY(-1px); }

.btn-ghost {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400;
  color: var(--text-muted); background: transparent;
  border: 0.5px solid rgba(240,237,230,0.2);
  padding: 13px 28px; border-radius: 7px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(240,237,230,0.5); color: var(--text); }

.btn-outline {
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--teal); background: transparent;
  border: 0.5px solid var(--teal-border);
  padding: 13px 28px; border-radius: 7px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--teal-bg); }

/* CTA STRIP */
.cta-strip {
  text-align: center; padding: 4rem 0;
  border-top: 0.5px solid var(--border-light);
  position: relative; z-index: 1;
}
.cta-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.cta-headline em { font-style: italic; color: var(--teal); }
.cta-sub, .cta-subhead { font-size: 14px; font-weight: 300; color: var(--text-muted); margin-bottom: 2rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* FOOTER */
footer {
  position: relative; z-index: 1;
  border-top: 0.5px solid var(--border-light); padding: 2rem 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 15px; color: var(--text); text-decoration: none; }
.footer-logo span { color: var(--teal); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 12px; color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 11px; color: var(--text-faint); }

/* RESPONSIVE */
@media (max-width: 860px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .inner { padding: 0 1.25rem; }
}
