/* ENCORE Brand System — Master Stylesheet */
/* Apply to every page. No drift. */

:root {
  /* Brand Palette */
  --bg: #0A0A0F;
  --bg-deeper: #080810;
  --surface: #13131A;
  --surface-raised: #1A1A24;
  --border: #2A2A3A;
  --border-strong: #3D3D52;

  --violet: #7B5EA7;
  --violet-glow: rgba(123, 94, 167, 0.25);
  --cyan: #00D4FF;
  --cyan-glow: rgba(0, 212, 255, 0.20);
  --library-cyan: #4CC9F0;
  --twin-pink: #FF5D8F;
  --twin-glow: rgba(255, 93, 143, 0.20);
  --mint: #00E5A0;
  --amber: #FFB800;
  --danger: #FF3B3B;

  --text: #FFFFFF;
  --text-muted: #9999BB;
  --text-faint: #6B6B85;

  /* Radii */
  --r-button: 8px;
  --r-card: 16px;
  --r-pill: 999px;

  /* Spacing */
  --section-y: 120px;
  --section-y-mobile: 64px;
  --card-pad: 32px;
  --container-max: 1200px;

  /* Type scale */
  --display: 72px;
  --h1: 56px;
  --h2: 40px;
  --h3: 28px;
  --body-lg: 18px;
  --body: 16px;
  --small: 14px;
  --caption: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-y) 0; }
@media (max-width: 768px) {
  .section { padding: var(--section-y-mobile) 0; }
  :root { --display: 44px; --h1: 36px; --h2: 28px; --h3: 22px; }
}

/* ──────────────── TYPE ──────────────── */
.display { font-size: var(--display); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
h1, .h1 { font-size: var(--h1); font-weight: 800; line-height: 1.1; letter-spacing: -0.015em; }
h2, .h2 { font-size: var(--h2); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3, .h3 { font-size: var(--h3); font-weight: 600; line-height: 1.2; }
.body-lg { font-size: var(--body-lg); line-height: 1.6; color: var(--text-muted); }
.body { font-size: var(--body); line-height: 1.6; color: var(--text-muted); }
.caption { font-size: var(--caption); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }

.text-violet { color: var(--violet); }
.text-cyan { color: var(--cyan); }
.text-pink { color: var(--twin-pink); }
.text-mint { color: var(--mint); }
.text-amber { color: var(--amber); }
.text-danger { color: var(--danger); }
.text-white { color: var(--text); }
.text-muted { color: var(--text-muted); }
.italic { font-style: italic; }
.center { text-align: center; }

/* ──────────────── NAVIGATION ──────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--container-max); margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: 2px; }
.nav-logo-icon { width: 28px; height: 28px; background: linear-gradient(135deg, var(--cyan) 0%, var(--twin-pink) 100%); border-radius: 6px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta .signin { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav-cta .signin:hover { color: var(--text); }
@media (max-width: 920px) { .nav-links { display: none; } }

/* ──────────────── BUTTONS ──────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 16px 32px; border-radius: var(--r-button);
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer; transition: all 0.2s; border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--violet);
  color: white;
  box-shadow: 0 4px 24px var(--violet-glow);
}
.btn-primary:hover { background: #8C70B8; transform: translateY(-1px); box-shadow: 0 8px 32px var(--violet-glow); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.05); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-link { color: var(--violet); font-weight: 600; }
.btn-link:hover { color: var(--cyan); }

/* ──────────────── BADGES & PILLS ──────────────── */
.eyebrow {
  display: inline-block;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--violet-glow); border: 1px solid var(--violet);
  color: var(--violet); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow.cyan { background: var(--cyan-glow); border-color: var(--cyan); color: var(--cyan); }
.eyebrow.pink { background: var(--twin-glow); border-color: var(--twin-pink); color: var(--twin-pink); }
.eyebrow.mint { background: rgba(0, 229, 160, 0.15); border-color: var(--mint); color: var(--mint); }
.eyebrow.amber { background: rgba(255, 184, 0, 0.15); border-color: var(--amber); color: var(--amber); }
.pulse-dot { display: inline-block; width: 8px; height: 8px; background: var(--amber); border-radius: 50%; margin-right: 6px; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ──────────────── CARDS ──────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--card-pad);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--border-strong); }
.card-violet { border-top: 3px solid var(--violet); }
.card-cyan { border-top: 3px solid var(--library-cyan); }
.card-pink { border-top: 3px solid var(--twin-pink); }
.card-mint { border-top: 3px solid var(--mint); }
.card-left-violet { border-left: 4px solid var(--violet); padding-left: 28px; }
.card-left-cyan { border-left: 4px solid var(--library-cyan); padding-left: 28px; }
.card-left-pink { border-left: 4px solid var(--twin-pink); padding-left: 28px; }
.card-left-amber { border-left: 4px solid var(--amber); padding-left: 28px; }
.card-left-danger { border-left: 4px solid var(--danger); padding-left: 28px; }
.card-featured {
  border: 2px solid var(--violet);
  box-shadow: 0 8px 60px var(--violet-glow);
  background: linear-gradient(180deg, var(--surface) 0%, #181828 100%);
  position: relative;
}
.card-tinted-red { background: rgba(255, 59, 59, 0.04); border-color: rgba(255, 59, 59, 0.3); }
.card-tinted-mint { background: rgba(0, 229, 160, 0.04); border-color: rgba(0, 229, 160, 0.3); }
.card-violet-gradient {
  background: linear-gradient(135deg, rgba(123, 94, 167, 0.25) 0%, rgba(0, 212, 255, 0.10) 100%);
  border-color: var(--violet);
}

/* ──────────────── GRID ──────────────── */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ──────────────── HERO ──────────────── */
.hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
}
.hero-orb {
  position: absolute; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, var(--violet-glow) 0%, transparent 70%);
  filter: blur(80px);
}
.hero-orb-left { top: -100px; left: -200px; width: 600px; height: 600px; }
.hero-orb-right { top: 100px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.hero-eyebrow { margin-bottom: 24px; }
.hero-title { margin-bottom: 24px; }
.hero-subtitle { font-size: 20px; color: var(--text-muted); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-microsocial { font-size: 14px; color: var(--text-muted); }
.hero-microsocial .stars { color: var(--amber); margin-right: 6px; letter-spacing: 2px; }

/* ──────────────── PHONE MOCKUP ──────────────── */
.phone-mockup {
  width: 280px; height: 580px; margin: 60px auto 0;
  background: #1a1a24;
  border: 8px solid #2a2a3a;
  border-radius: 40px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 80px var(--violet-glow);
  overflow: hidden;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0a0a14 0%, #15152a 100%);
  padding: 40px 20px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 80px; height: 22px; background: #000; border-radius: 12px; z-index: 2; }
.phone-pill {
  background: rgba(123, 94, 167, 0.2); border: 1px solid var(--violet);
  border-radius: 8px; padding: 8px 12px; font-size: 11px; color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
}
.phone-tile {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 6px;
}
.phone-tile-row { display: flex; gap: 6px; align-items: center; font-size: 10px; color: var(--text-muted); }
.phone-gradient-bar { height: 6px; background: linear-gradient(90deg, var(--cyan) 0%, var(--twin-pink) 100%); border-radius: 3px; }
.phone-ship-btn { background: var(--mint); color: var(--bg); padding: 10px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 12px; }

/* ──────────────── SOCIAL PROOF STRIP ──────────────── */
.proof-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.proof-strip-content {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 32px;
  font-size: 14px; color: var(--text-muted);
}
.proof-strip-content strong { color: var(--mint); font-weight: 700; }
.proof-divider { width: 1px; height: 16px; background: var(--border); }

/* ──────────────── SECTION HEADER ──────────────── */
.section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .subtitle { color: var(--text-muted); font-size: 18px; line-height: 1.6; }

/* ──────────────── STEPS ──────────────── */
.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--violet); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
  box-shadow: 0 4px 20px var(--violet-glow);
}
.step { padding: 20px 0; }
.step h3 { margin: 16px 0 12px; }
.step p { color: var(--text-muted); }

/* ──────────────── METRIC CALLOUTS ──────────────── */
.metric { text-align: center; padding: 24px 16px; }
.metric .number { font-size: 56px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.metric .number.mint { color: var(--mint); }
.metric .number.amber { color: var(--amber); }
.metric .number.violet { color: var(--violet); }
.metric .number.cyan { color: var(--cyan); }
.metric .number.pink { color: var(--twin-pink); }
.metric .label { margin-top: 12px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.metric .context { margin-top: 4px; font-size: 12px; color: var(--text-faint); }

/* ──────────────── PRICING ──────────────── */
.pricing-card { padding: 32px; display: flex; flex-direction: column; }
.pricing-card .tier-name { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.pricing-card .tier-price { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.pricing-card .tier-price-suffix { color: var(--text-muted); font-size: 16px; }
.pricing-card .tier-desc { color: var(--text-muted); margin: 16px 0; font-size: 14px; }
.pricing-card ul { list-style: none; margin: 16px 0; }
.pricing-card ul li { padding: 6px 0; font-size: 14px; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
.pricing-card ul li::before { content: "✦"; color: var(--violet); flex-shrink: 0; }
.pricing-card .btn { margin-top: auto; }
.ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--bg);
  padding: 4px 14px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ──────────────── FAQ ──────────────── */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 600; font-size: 18px; margin-bottom: 10px; }
.faq-a { color: var(--text-muted); line-height: 1.65; }

/* ──────────────── FOOTER ──────────────── */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
.footer h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-brand-text { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer ul { list-style: none; }
.footer ul li { padding: 6px 0; }
.footer ul li a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
.footer ul li a:hover { color: var(--text); }
.app-badges { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; font-size: 13px;
}
.footer-bottom {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--text-muted);
}

/* ──────────────── SIGNATURE GRADIENT ELEMENTS ──────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--twin-pink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-bar {
  height: 4px; width: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--library-cyan) 0%, var(--twin-pink) 100%);
}
.signature-rule { height: 1px; background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%); margin: 16px 0; }

/* ──────────────── CTA SECTIONS ──────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--violet) 0%, #4D2D7A 100%);
  border-radius: 0;
  padding: 100px 24px;
  text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255, 255, 255, 0.8); font-size: 18px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: white; color: var(--violet); }
.cta-section .btn-primary:hover { background: rgba(255,255,255,0.9); }

/* ──────────────── MISC ──────────────── */
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.icon-circle {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; background: var(--violet-glow); color: var(--violet);
}
.icon-circle.cyan { background: var(--cyan-glow); color: var(--cyan); }
.icon-circle.pink { background: var(--twin-glow); color: var(--twin-pink); }
.icon-circle.mint { background: rgba(0, 229, 160, 0.12); color: var(--mint); }
.icon-circle.amber { background: rgba(255, 184, 0, 0.12); color: var(--amber); }
.timeline-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px dashed var(--border); }
.timeline-row:last-child { border-bottom: none; }
.timeline-row .step-num { color: var(--text-muted); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; }
.timeline-row .step-task { flex: 1; padding: 0 20px; color: var(--text); font-size: 15px; }
.timeline-row .step-time { color: var(--amber); font-weight: 700; font-size: 15px; }
.quote-mark { font-size: 80px; line-height: 1; color: var(--cyan); opacity: 0.3; font-family: Georgia, serif; }
blockquote { font-style: italic; color: var(--text); font-size: 18px; line-height: 1.6; }

.list-clean { list-style: none; }
.list-clean li { padding: 6px 0; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.list-clean li::before { content: "✦"; color: var(--cyan); flex-shrink: 0; }
.list-clean.violet li::before { color: var(--violet); }
.list-clean.pink li::before { color: var(--twin-pink); }
.list-clean.mint li::before { color: var(--mint); }

/* ============================
   MOBILE NAV DRAWER (added v1.1, Jun 3 2026)
   Reuses existing tokens: --bg, --border, --text, --text-muted, --violet,
   --r-button, --r-card, --violet-glow. No new tokens introduced.
   ============================ */

.nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 102;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 920px) {
  .nav-hamburger { display: inline-flex; align-items: center; justify-content: center; }
  /* Desktop CTAs hidden on mobile — moved into the drawer */
  .nav-cta { display: none; }
}

.nav-hamburger-bar,
.nav-hamburger::before,
.nav-hamburger::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  position: absolute;
  left: 11px;
  transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
}
.nav-hamburger::before { top: 14px; }
.nav-hamburger-bar     { top: 21px; }
.nav-hamburger::after  { top: 28px; }

.nav-hamburger[aria-expanded="true"]::before { top: 21px; transform: rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .nav-hamburger-bar { opacity: 0; }
.nav-hamburger[aria-expanded="true"]::after  { top: 21px; transform: rotate(-45deg); }

.nav-hamburger:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 4px;
  border-radius: var(--r-button);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 101;
  display: none;
  flex-direction: column;
  padding: 88px 24px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer.is-open { display: flex; }

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.nav-drawer-link {
  display: block;
  padding: 18px 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  text-decoration: none;
  transition: color 0.15s ease;
  letter-spacing: -0.005em;
}
.nav-drawer-link:hover,
.nav-drawer-link:focus-visible {
  color: var(--text);
  outline: none;
}
.nav-drawer-link[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--violet);
}

.nav-drawer-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.nav-drawer-cta-stack .btn { width: 100%; min-height: 48px; }
.nav-drawer-cta-stack .signin {
  text-align: center;
  padding: 14px;
  color: var(--text-muted);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}
.nav-drawer-cta-stack .signin:hover,
.nav-drawer-cta-stack .signin:focus-visible {
  color: var(--text);
  outline: none;
}

body.nav-drawer-open { overflow: hidden; }

/* Above 920px the drawer never shows even if state lingers from a resize */
@media (min-width: 921px) {
  .nav-drawer { display: none !important; }
  body.nav-drawer-open { overflow: auto; }
}

/* ============================
   RESPONSIVE IMAGE DEFAULTS (added v1.1, Jun 3 2026)
   Universal sane defaults so every img/picture in the build behaves.
   ============================ */
img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
picture > img { width: 100%; height: auto; }

/* ============================================================
   PAGE-SPECIFIC COMPONENTS
   Consolidated from the per-page <style> blocks in the source
   pages (404, demo, blog, comparisons, legal, waitlist) so the
   WordPress theme renders them site-wide. No tokens changed.
   ============================================================ */

/* --- 404 --- */
.error-num { font-size:clamp(120px, 22vw, 220px); font-weight:800; line-height:0.9; letter-spacing:-0.08em; background:linear-gradient(135deg, var(--cyan) 0%, var(--violet) 50%, var(--twin-pink) 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.error-orb { position:absolute; top:30%; left:50%; transform:translate(-50%, -50%); width:700px; height:700px; background:radial-gradient(circle, var(--violet-glow) 0%, transparent 70%); filter:blur(80px); pointer-events:none; z-index:0; }

/* --- Forms (demo, waitlist, newsletter) --- */
.form-field { margin-bottom: 16px; }
.form-field label { display:block; color:var(--text-muted); font-size:12px; margin-bottom:6px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; }
.form-field input, .form-field select, .form-field textarea { width:100%; background:var(--bg); border:1px solid var(--border); border-radius:8px; padding:14px 16px; color:var(--text); font-family:inherit; font-size:15px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline:none; border-color:var(--violet); box-shadow:0 0 0 3px var(--violet-glow); }

/* --- Blog post cards --- */
.post-card { background:var(--surface); border:1px solid var(--border); border-radius:16px; overflow:hidden; transition:transform 0.2s, border-color 0.2s; cursor:pointer; }
.post-card:hover { transform:translateY(-4px); border-color:var(--violet); }
.post-card a { color:inherit; }
.post-cover { height:160px; position:relative; }
.post-cover-cyan { background:linear-gradient(135deg, var(--bg-deeper) 0%, var(--cyan-glow) 100%); }
.post-cover-pink { background:linear-gradient(135deg, var(--bg-deeper) 0%, var(--twin-glow) 100%); }
.post-cover-violet { background:linear-gradient(135deg, var(--bg-deeper) 0%, var(--violet-glow) 100%); }
.post-cover .post-tag { position:absolute; top:14px; left:14px; padding:4px 10px; border-radius:999px; background:rgba(0,0,0,0.5); backdrop-filter:blur(8px); font-size:10px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:#fff; }
.post-meta { padding:0 24px 14px; color:var(--text-muted); font-size:12px; }
.post-card h3 { padding:14px 24px 0; font-size:18px; line-height:1.3; }
.post-card p { padding:8px 24px 14px; color:var(--text-muted); font-size:14px; line-height:1.55; }

/* --- Comparison table --- */
.cmp-table-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; }
.cmp-table { width:100%; border-collapse:collapse; background:var(--surface); border-radius:16px; overflow:hidden; }
.cmp-table th, .cmp-table td { padding:18px 20px; text-align:left; border-bottom:1px solid var(--border); font-size:14px; }
.cmp-table th { background:var(--bg-deeper); color:var(--text-muted); font-weight:700; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; }
.cmp-table th.encore { background:rgba(123,94,167,0.2); color:var(--violet); }
.cmp-table td.feat { color:#fff; font-weight:600; }
.cmp-yes { color:var(--mint); font-weight:700; }
.cmp-no { color:var(--text-faint); }
.cmp-partial { color:var(--amber); font-weight:600; }

/* --- Legal pages --- */
.legal-content h2 { font-size:22px; font-weight:700; margin:40px 0 14px; color:#fff; }
.legal-content h3 { font-size:16px; font-weight:600; margin:24px 0 10px; color:var(--cyan); letter-spacing:0.04em; }
.legal-content p, .legal-content li { color:var(--text-muted); line-height:1.75; font-size:15px; margin-bottom:12px; }
.legal-content ul { padding-left:24px; }
.legal-content strong { color:#fff; }
.legal-content a { color:var(--violet); text-decoration:underline; }
.legal-toc { background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:24px; margin-bottom:40px; }
.legal-toc h4 { font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-muted); margin-bottom:14px; }
.legal-toc ol { padding-left:20px; }
.legal-toc ol li { color:var(--text-muted); padding:4px 0; font-size:14px; }
.legal-toc ol li a { color:var(--text); }

/* --- Waitlist progress + perks --- */
.progress-bar { background:var(--bg); border-radius:999px; height:20px; overflow:hidden; border:1px solid var(--border); position:relative; }
.progress-fill { background:linear-gradient(90deg, var(--cyan) 0%, var(--violet) 50%, var(--twin-pink) 100%); height:100%; width:52%; border-radius:999px; transition:width 0.6s; }
.progress-label { position:absolute; right:12px; top:50%; transform:translateY(-50%); font-size:12px; font-weight:700; color:#fff; }
.perk { display:flex; gap:14px; align-items:flex-start; padding:14px; background:var(--surface); border-radius:10px; border-left:3px solid var(--violet); }
.perk-num { background:var(--violet); color:#fff; width:28px; height:28px; border-radius:50%; display:flex;align-items:center;justify-content:center;font-weight:800;font-size:13px;flex-shrink:0; }
.encore-waitlist-success { text-align:center; padding:24px 0; }
.encore-waitlist-success h3 { color:var(--mint); margin-bottom:8px; }

/* --- Nav logo mark (responsive <picture> in nav/footer) --- */
.nav-logo-mark { display:inline-flex; width:32px; }
.nav-logo-mark picture, .nav-logo-mark img { width:32px; height:auto; }

/* --- Metric block (shortcode) --- */
.encore-metric--mint { color:var(--mint); font-weight:800; }

/* ============================================================
   WORDPRESS-SPECIFIC ADDITIONS
   ============================================================ */
/* Admin bar offset so the fixed nav clears the WP toolbar */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }
.admin-bar .nav-drawer { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav-drawer { top: 46px; } }

/* Offset the fixed nav so page content isn't hidden beneath it on inner pages */
body:not(.home) .site-main { padding-top: 0; }

/* Gutenberg button styles mirror brand buttons */
.wp-block-button.is-style-encore-primary > .wp-block-button__link { background: var(--violet); color:#fff; border-radius: var(--r-button); box-shadow: 0 4px 24px var(--violet-glow); padding:16px 32px; font-weight:600; }
.wp-block-button.is-style-encore-primary > .wp-block-button__link:hover { background:#8C70B8; }
.wp-block-button.is-style-encore-ghost > .wp-block-button__link { background:transparent; color:var(--text); border:1px solid rgba(255,255,255,0.2); border-radius:var(--r-button); padding:16px 32px; font-weight:600; }
.wp-block-button.is-style-encore-ghost > .wp-block-button__link:hover { border-color:var(--text); background:rgba(255,255,255,0.05); }

/* Site main pushes below the fixed nav (hero already pads; inner templates use .section) */
