/* Shared stylesheet for the RealFlow Systems × Mivomedia website.
   Used by: index.html, pricing.html, and all legal pages. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #080808;
  --card: #111111;
  --card2: #0d0d0d;
  --border: #191919;
  --border2: #252525;
  --accent: #c4956a;
  --t1: #e8e8e8;
  --t2: #8a8a8a;
  --t3: #555;
  --ok: #4ade80;
  --warn: #fbbf24;
  --err: #f87171;
  --info: #60a5fa;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Spacing scale */
  --s-1: 6px;
  --s-2: 10px;
  --s-3: 14px;
  --s-4: 20px;
  --s-5: 28px;
  --s-6: 40px;
  --s-7: 56px;
  --s-8: 80px;
}

html, body {
  background-color: var(--bg);
  color: var(--t1);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body {
  overflow-x: clip;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, #c4956a0a 0%, transparent 60%),
    radial-gradient(circle 1.4px at center, #c4956a20 1px, transparent 1px),
    radial-gradient(circle 0.7px at center, #c4956a0c 0.5px, transparent 0.5px);
  background-size: 100% 100%, 20px 20px, 13px 13px;
  background-attachment: fixed, fixed, fixed;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
}
.mask { background: linear-gradient(180deg, transparent 0%, var(--bg) 70%); flex: 1; position: relative; z-index: 1; }

/* ── Navigation ──────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 20; background: rgba(8,8,8,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1260px; margin: 0 auto; padding: 16px 36px; display: flex; align-items: center; gap: 28px; }
.nav-logo { font-size: 14px; font-weight: 700; color: var(--t1); letter-spacing: -.2px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.nav-logo .primary { color: var(--accent); }
.nav-logo .x { color: var(--accent); opacity: .7; font-size: 15px; font-weight: 700; }
.nav-logo .secondary { color: var(--t1); font-weight: 600; }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a { color: var(--t2); text-decoration: none; font-size: 13px; padding: 8px 14px; border-radius: 8px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--t1); background: rgba(255,255,255,.03); }
.nav-links a.active { color: var(--accent); background: rgba(196,149,106,.08); }
.nav-cta { background: var(--accent); color: #1a1209; border: none; padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform .1s, box-shadow .15s; box-shadow: 0 4px 16px rgba(196,149,106,.2); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(196,149,106,.35); }
/* Login button in nav — same height as nav-cta (specificity boost wins over .btn-secondary) */
.nav .nav-login { font-size: 13px; padding: 9px 18px; border-radius: 8px; white-space: nowrap; }

/* ── Page wrap ───────────────────────────────────────────────────────── */
.wrap { max-width: 1260px; margin: 0 auto; padding: 48px 36px 64px; position: relative; z-index: 1; }
.wrap--narrow { max-width: 820px; }
.bar { height: 3px; background: linear-gradient(90deg, var(--accent), transparent 55%); border-radius: 2px; margin-bottom: 48px; }

/* ── Sections + centered headings ────────────────────────────────────── */
.sec { margin-bottom: 64px; }
.sec:last-of-type { margin-bottom: 0; }
.sec-head { text-align: center; margin-bottom: 40px; }
.sec-head .eyebrow { display: inline-block; font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: 1.6px; font-weight: 700; margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(22px, 3vw, 32px); color: var(--t1); font-weight: 700; letter-spacing: -.6px; line-height: 1.15; max-width: 720px; margin: 0 auto; }
.sec-head p { color: var(--t2); font-size: 15px; max-width: 640px; margin: 16px auto 0; line-height: 1.7; }

/* ── Balanced text wrapping on headings ──────────────────────────────── */
h1, h2, h3, .sec-head h2, .hero h1, .pricing-head h1 { text-wrap: balance; }

/* ── Hero (centered) ─────────────────────────────────────────────────── */
.hero { text-align: center; padding: 40px 0 48px; }
.hero .eyebrow { display: inline-block; font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: 1.6px; font-weight: 700; margin-bottom: 18px; }
.hero h1 { font-size: clamp(24px, 4vw, 52px); line-height: 1.1; letter-spacing: -1.2px; color: var(--t1); font-weight: 700; margin: 0 auto 20px; max-width: 900px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero h1 em { color: var(--accent); font-style: normal; text-shadow: 0 2px 12px rgba(196,149,106,.2); }
.hero .sub { font-size: 17px; color: var(--t2); line-height: 1.6; max-width: 680px; margin: 0 auto 28px; }
.hero-cta-row { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hero-proof { display: block; color: var(--t3); font-size: 12px; letter-spacing: .3px; margin-top: 18px; width: 100%; }

/* Pricing-hero variation (same as .hero but sized tighter for text-only) */
.pricing-head { text-align: center; padding: 32px 0 28px; }
.pricing-head .eyebrow { display: inline-block; font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: 1.6px; font-weight: 700; margin-bottom: 14px; }
.pricing-head h1 { font-size: clamp(28px, 4.5vw, 52px); color: var(--t1); font-weight: 700; letter-spacing: -.8px; line-height: 1.1; margin: 0 auto 14px; max-width: 720px; }
.pricing-head p { color: var(--t2); font-size: 17px; max-width: 620px; margin: 0 auto 24px; line-height: 1.6; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn-primary { background: linear-gradient(175deg, #d4a472 0%, #b07438 100%); color: #1a1209; border: none; padding: 13px 26px; border-radius: 10px; font-size: 14px; font-weight: 700; letter-spacing: .2px; cursor: pointer; text-decoration: none; transition: transform .1s, box-shadow .15s; box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(0,0,0,.18), 0 4px 20px rgba(196,149,106,.28); text-shadow: 0 1px 2px rgba(0,0,0,.22), 0 -1px 0 rgba(255,255,255,.16); display: inline-flex; align-items: center; gap: 7px; }
.btn-primary:hover { background: linear-gradient(175deg, #dcac7c 0%, #bc8044 100%); transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(0,0,0,.18), 0 6px 26px rgba(196,149,106,.4); }
.btn-secondary { background: linear-gradient(175deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.01) 100%); color: var(--t1); border: 1px solid var(--border2); padding: 13px 22px; border-radius: 10px; font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; transition: border-color .15s, color .15s; box-shadow: inset 0 1px 0 rgba(255,255,255,.07), inset 0 -1px 0 rgba(0,0,0,.14); text-shadow: 0 1px 3px rgba(0,0,0,.5), 0 -1px 0 rgba(255,255,255,.04); display: inline-flex; align-items: center; gap: 6px; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
/* Compact button variant for use inside cards */
.btn-sm { padding: 10px 20px; border-radius: 8px; font-size: 13px; }
/* Full-width block button for form submits */
.btn-block { width: 100%; padding: 15px 24px; font-size: 15px; border-radius: 10px; justify-content: center; font-weight: 700; }

/* ── Billing toggle ──────────────────────────────────────────────────── */
.toggle { display: inline-flex; background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 3px; }
.toggle button { background: transparent; border: none; color: var(--t2); padding: 9px 20px; cursor: pointer; font-size: 12px; font-weight: 600; border-radius: 18px; transition: color .15s, background .15s; letter-spacing: .2px; font-family: inherit; }
.toggle button:hover { color: var(--t1); }
.toggle button.active { background: var(--accent); color: #1a1209; }
.toggle .savings { margin-left: 6px; font-size: 9px; background: rgba(196,149,106,.15); border: 1px solid var(--accent); color: var(--accent); padding: 1px 7px; border-radius: 8px; letter-spacing: .3px; text-transform: uppercase; font-weight: 700; vertical-align: middle; }
/* Badge inverts when its parent button is active (gold bg → dark badge with dark text) */
.toggle button.active .savings { background: rgba(0,0,0,.22); border-color: rgba(0,0,0,.28); color: #1a1209; }

/* ── Grids ───────────────────────────────────────────────────────────── */
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.two-up { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── Cards ───────────────────────────────────────────────────────────── */
.c { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; }
.c h3 { font-size: 16px; color: var(--t1); font-weight: 600; letter-spacing: -.2px; margin-bottom: 12px; }
.c p { color: var(--t2); font-size: 14px; line-height: 1.7; margin: 0 0 8px; }
.c p:last-child { margin-bottom: 0; }
.c ul { color: var(--t2); font-size: 14px; line-height: 1.7; padding-left: 22px; margin: 6px 0 0; }
.c ul li { margin-bottom: 4px; }
.c .ico { font-size: 22px; color: var(--accent); margin-bottom: 14px; }

/* ── Steps ───────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; position: relative; counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); position: absolute; top: 18px; right: 24px; font-size: 32px; font-weight: 700; color: var(--accent); opacity: .25; letter-spacing: -1px; font-family: var(--mono); }
.step h3 { font-size: 15px; color: var(--t1); font-weight: 600; letter-spacing: -.2px; margin-bottom: 10px; padding-right: 48px; }
.step p { color: var(--t2); font-size: 14px; line-height: 1.7; }

/* ── Action cards ────────────────────────────────────────────────────── */
.actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.action { background: var(--card2); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; display: flex; gap: 14px; align-items: flex-start; }
.action .ai { width: 36px; height: 36px; flex-shrink: 0; background: rgba(196,149,106,.1); border: 1px solid rgba(196,149,106,.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 16px; font-weight: 700; }
.action-k { color: var(--t1); font-size: 13px; font-weight: 600; margin-bottom: 4px; letter-spacing: -.1px; }
.action-d { color: var(--t2); font-size: 13px; line-height: 1.6; }

/* ── Social proof strip ──────────────────────────────────────────────── */
.proof { background: var(--card2); border: 1px solid var(--border); border-radius: 10px; padding: 18px 28px; text-align: center; color: var(--t2); font-size: 12px; letter-spacing: .3px; }
.proof strong { color: var(--accent); font-weight: 600; margin: 0 4px; }

/* ── Pricing tiers ───────────────────────────────────────────────────── */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.tier { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px 28px; position: relative; display: flex; flex-direction: column; }
.tier.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset, 0 12px 40px rgba(196,149,106,.1); }
.tier .badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #1a1209; font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 12px; letter-spacing: .5px; text-transform: uppercase; }
.tier-name { font-size: 22px; color: var(--t1); font-weight: 800; letter-spacing: -.4px; margin-bottom: 2px; }
.tier-for { color: var(--t2); font-size: 11px; margin-bottom: 24px; letter-spacing: .5px; text-transform: uppercase; }
.tier-price { font-size: 48px; color: var(--t1); font-weight: 800; line-height: 1; font-family: var(--mono); letter-spacing: -1.5px; }
.tier-price .per { font-size: 14px; color: var(--t3); font-weight: 400; font-family: -apple-system, sans-serif; letter-spacing: 0; }
.tier-sub { color: var(--t2); font-size: 12px; margin-top: 8px; min-height: 18px; }
.tier-sub .tot { color: var(--accent); font-weight: 600; }
.tier-setup { color: var(--t2); font-size: 12px; margin-top: 8px; letter-spacing: .2px; }
.tier hr { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.tier-events { font-size: 13px; color: var(--t1); font-weight: 600; margin-bottom: 4px; }
.tier-events strong { color: var(--accent); font-weight: 800; font-size: 17px; }
.tier-overage { font-size: 11px; color: var(--t3); font-family: var(--mono); }
.tier ul { list-style: none; padding: 0; margin: 18px 0 0; flex: 1; }
.tier li { padding: 8px 0 8px 24px; color: var(--t1); font-size: 13px; font-weight: 500; position: relative; line-height: 1.5; }
.tier li::before { content: '✓'; color: var(--accent); position: absolute; left: 0; font-weight: 700; font-size: 13px; }
.tier-cta { margin-top: 24px; width: 100%; display: block; text-align: center; background: transparent; border: 1px solid var(--border2); color: var(--t1); padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: border-color .15s, color .15s, background .15s; font-family: inherit; text-decoration: none; }
.tier-cta:hover { border-color: var(--accent); color: var(--accent); }
.tier.featured .tier-cta { background: var(--accent); color: #1a1209; border-color: var(--accent); }
.tier.featured .tier-cta:hover { background: #d4a57a; }

/* ── Tables ──────────────────────────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; margin-top: 14px; }
th, td { text-align: left; padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: 13px; vertical-align: top; }
th { font-size: 10px; color: var(--t3); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--mono); }
tr.tot td { border-top: 1px solid var(--border2); font-weight: 600; color: var(--t2); }
tr.tot.tot--annual td { border-top: 2px solid var(--accent); background: rgba(196,149,106,.06); font-weight: 700; color: var(--t1); }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; color: var(--t1); font-size: 14px; font-weight: 600; letter-spacing: -.1px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 22px; font-weight: 300; transition: transform .2s; margin-left: 16px; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 18px; color: var(--t2); font-size: 13px; line-height: 1.7; }

/* ── Note (warning) ──────────────────────────────────────────────────── */
.note { background: rgba(251,191,36,0.06); border: 1px solid rgba(251,191,36,0.35); border-radius: 10px; padding: 18px 22px; color: var(--t2); font-size: 13px; line-height: 1.7; }
.note strong { color: var(--warn); }

/* ── Rules list (bulleted terms) ─────────────────────────────────────── */
.rules { list-style: none; padding: 0; margin: 0; }
.rules li { padding: 14px 0; color: var(--t2); font-size: 13px; border-bottom: 1px dashed var(--border); line-height: 1.7; }
.rules li:first-child { padding-top: 0; }
.rules li:last-child { border-bottom: none; padding-bottom: 0; }
.rules strong { color: var(--t1); font-weight: 600; }

/* ── Final CTA ───────────────────────────────────────────────────────── */
.final-cta { text-align: center; padding: 56px 28px; background: linear-gradient(180deg, var(--card), var(--card2)); border: 1px solid var(--border); border-radius: 14px; margin-top: 48px; }
.final-cta h2 { font-size: 28px; color: var(--t1); font-weight: 700; letter-spacing: -.4px; margin-bottom: 14px; }
.final-cta p { color: var(--t2); font-size: 15px; max-width: 560px; margin: 0 auto 24px; line-height: 1.6; }

/* ── Long-form (legal page) typography ───────────────────────────────── */
.legal-body h2 { font-size: 22px; color: var(--t1); font-weight: 700; letter-spacing: -.3px; margin: 32px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 14px; color: var(--t1); font-weight: 600; margin: 20px 0 8px; }
.legal-body p { color: var(--t2); font-size: 13px; line-height: 1.8; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { color: var(--t2); font-size: 13px; line-height: 1.8; padding-left: 24px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 6px; }
.legal-body strong { color: var(--t1); font-weight: 600; }
.legal-body em { color: var(--t2); font-style: italic; }
.legal-body a { color: var(--accent); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-body hr { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* Legal sub-nav (between legal docs) */
.legal-subnav { display: flex; flex-wrap: wrap; gap: 4px; padding: 14px 0; margin-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-subnav a { color: var(--t2); text-decoration: none; font-size: 12px; padding: 6px 12px; border-radius: 6px; transition: color .15s, background .15s; }
.legal-subnav a:hover { color: var(--t1); background: rgba(255,255,255,.03); }
.legal-subnav a.active { color: var(--accent); background: rgba(196,149,106,.08); }

/* ── Footer ──────────────────────────────────────────────────────────── */
footer { padding: 32px 36px; border-top: 1px solid var(--border); background: var(--bg); text-align: center; color: var(--t3); font-size: 11px; position: relative; z-index: 1; }
footer .brand { display: inline-flex; align-items: center; gap: 10px; color: var(--t2); font-size: 13px; font-weight: 500; letter-spacing: .3px; }
footer .brand .x { color: var(--accent); font-weight: 700; opacity: .8; font-size: 16px; }
footer .legal { margin-top: 10px; font-size: 11px; color: var(--t3); }
footer a { color: var(--t3); text-decoration: none; margin: 0 8px; }
footer a:hover { color: var(--accent); }

/* ── Form elements (canonical) ───────────────────────────────────────── */
.form-label { display: block; font-size: 11px; font-weight: 700; color: var(--t2); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; }
.form-input { width: 100%; padding: 12px 14px; border-radius: 9px; font-size: 14px; border: 1px solid var(--border2); background: var(--card2); color: var(--t1); font-family: inherit; outline: none; }
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(196,149,106,.12); }

/* ── Confirmation cards (thanks / subscribed / message-sent) ─────────── */
.thanks-card { padding: 48px 40px; border-radius: 14px; max-width: 560px; margin: 0 auto; text-align: center; background: var(--card); border: 1px solid var(--border); }
.thanks-icon { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 24px; font-size: 28px; color: var(--accent); display: inline-flex; align-items: center; justify-content: center; background: rgba(196,149,106,.10); border: 1.5px solid rgba(196,149,106,.45); }
.thanks-card h1 { font-size: 32px; font-weight: 700; color: var(--t1); letter-spacing: -.4px; margin-bottom: 14px; text-wrap: balance; }
.thanks-card p { color: var(--t2); font-size: 15px; line-height: 1.75; margin: 0 auto 12px; max-width: 500px; }
.thanks-step { background: var(--card2); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; }
.thanks-step .ico { font-size: 18px; color: var(--accent); margin-bottom: 10px; }
.thanks-step .n { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .6px; margin-bottom: 6px; font-family: var(--mono); }
.thanks-step .h { color: var(--t1); font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.thanks-step .d { color: var(--t2); font-size: 12px; line-height: 1.6; }
.thanks-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.thanks-what { background: var(--card2); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; margin: 32px 0 28px; text-align: left; }
.thanks-what-title { font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 14px; }
.thanks-what ul { list-style: none; padding: 0; margin: 0; }
.thanks-what li { font-size: 13px; color: var(--t2); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
.thanks-what li:last-child { border-bottom: none; }
.thanks-what li i { color: var(--accent); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.thanks-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 32px 0 28px; text-align: left; }
.thanks-steps--3 { grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .thanks-steps--3 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .thanks-card { padding: 40px 22px; } .thanks-steps { grid-template-columns: 1fr; } }

/* ── Action card grid (canonical) ────────────────────────────────────── */
.act-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.act-grid--4 { grid-template-columns: repeat(4, 1fr); }
.act-card { background: #0d0d0d; border: 1px solid #1e1e1e; border-radius: 12px; overflow: hidden; transition: border-color .6s ease, box-shadow .6s ease; }
.act-card.lit { border-color: rgba(196,149,106,.65); box-shadow: 0 0 0 1px rgba(196,149,106,.12), 0 8px 28px rgba(196,149,106,.1); }
.act-card-hdr { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: linear-gradient(135deg, rgba(196,149,106,.1) 0%, rgba(196,149,106,.04) 100%); border-bottom: 1px solid rgba(196,149,106,.15); }
.act-card-icon { width: 32px; height: 32px; font-size: 15px; flex-shrink: 0; background: rgba(196,149,106,.12); border: 1px solid rgba(196,149,106,.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.act-card-title { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .7px; }
.act-card-body { padding: 16px 18px 18px; }
.act-card-dl { font-size: 13px; }
.act-card-dl dt { color: var(--t3); font-size: 10px; text-transform: uppercase; letter-spacing: .3px; margin-top: 8px; }
.act-card-dl dd { margin: 0; color: var(--t1); line-height: 1.6; }
.act-card-why { font-size: 11px; color: var(--t3); font-style: italic; margin-top: 10px; border-top: 1px solid #191919; padding-top: 10px; line-height: 1.6; }
@media (max-width: 900px) { .act-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .act-grid, .act-grid--4 { grid-template-columns: 1fr; } }

/* ── Report preview cards (rp-*) ─────────────────────────────────────── */
.rp-window { background: #0d0d0d; border: 1px solid #222; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.6), 0 0 0 1px #1e1e1e inset; }
.rp-topbar { height: 3px; background: linear-gradient(90deg, #c4956a, transparent 60%); }
.rp-header { padding: 14px 18px 12px; border-bottom: 1px solid #191919; display: flex; justify-content: space-between; align-items: flex-start; }
.rp-title { font-size: 16px; font-weight: 700; color: #c4956a; letter-spacing: -.3px; }
.rp-sub { font-size: 9px; color: #444; text-transform: uppercase; letter-spacing: 1.2px; margin-top: 2px; }
.rp-date-d { font-size: 10px; color: #444; text-align: right; }
.rp-date-t { font-size: 12px; color: #e8e8e8; font-weight: 600; text-align: right; margin-top: 1px; }
.rp-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px 18px; background: #080808; border-bottom: 1px solid #191919; }
.rp-metric { background: #111; border: 1px solid #191919; border-radius: 8px; padding: 14px 8px; text-align: center; }
.rp-mv { font-size: 28px; font-weight: 800; line-height: 1; }
.rp-ml { font-size: 9px; color: #555; text-transform: uppercase; letter-spacing: .5px; margin-top: 6px; }
.rp-body { padding: 12px 18px; }
.rp-lbl { font-size: 9px; color: #555; text-transform: uppercase; letter-spacing: .8px; font-weight: 600; margin-bottom: 8px; }
.rp-badge { display: inline-block; background: #f8717118; color: #f87171; font-size: 9px; font-weight: 700; padding: 1px 6px; border-radius: 6px; margin-left: 4px; }
.rp-lead { background: #111; border: 1px solid #191919; border-radius: 7px; padding: 10px 13px; margin-bottom: 7px; }
.rp-lead-hdr { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 5px; }
.rp-lead-name { font-size: 12px; font-weight: 600; color: #e8e8e8; }
.rp-lead-loc { font-size: 10px; color: #555; margin-top: 1px; }
.rp-tag { display: inline-block; font-size: 8px; padding: 1px 5px; border-radius: 5px; background: #60a5fa10; color: #60a5fa; font-weight: 600; text-transform: uppercase; letter-spacing: .2px; margin-left: 4px; vertical-align: middle; }
.rp-tag--fb { background: #1877f210; color: #4599f7; }
.rp-ago { font-size: 10px; white-space: nowrap; }
.rp-lead-sum { font-size: 11px; color: #666; line-height: 1.5; }
.rp-ax { background: #0a0a0f; border: 1px solid rgba(196,149,106,.25); border-radius: 7px; padding: 9px 12px; margin-top: 8px; }
.rp-ax-ch { font-size: 8px; color: #c4956a; text-transform: uppercase; letter-spacing: .5px; font-weight: 700; margin-bottom: 5px; }
.rp-ax-draft { font-size: 11px; color: #e8e8e8; line-height: 1.55; }
.rp-chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 7px; }
.rp-chip { font-size: 9px; color: #666; background: #0d0d0d; border: 1px solid #222; border-radius: 4px; padding: 2px 7px; }
.rpt-features { list-style: none; padding: 0; margin: 0 0 28px; }
.rpt-features li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--t1); line-height: 1.6; display: flex; gap: 10px; align-items: flex-start; }
.rpt-features li:last-child { border-bottom: none; }
.rpt-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Section dividers (gold gradient line + ambient glow) ─────────────── */
.sec + .sec { position: relative; isolation: isolate; padding-top: 64px; }
.sec + .sec::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(196,149,106,.14) 18%, rgba(196,149,106,.28) 50%, rgba(196,149,106,.14) 82%, transparent 100%); pointer-events: none; z-index: -1; }
.sec + .sec::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 520px; background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(196,149,106,.06) 0%, transparent 100%); pointer-events: none; z-index: -1; }

/* ── Newsletter footer strip ─────────────────────────────────────────── */
.footer-nl { position: relative; isolation: isolate; padding: 28px 24px; overflow: clip; }
.footer-nl::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(196,149,106,.14) 18%, rgba(196,149,106,.28) 50%, rgba(196,149,106,.14) 82%, transparent 100%); pointer-events: none; }
.footer-nl::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 360px; background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(196,149,106,.05) 0%, transparent 100%); pointer-events: none; z-index: -1; }
.footer-nl-inner { max-width: 800px; margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-nl-copy { flex: 1; min-width: 260px; }
.footer-nl-title { font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 3px; }
.footer-nl-sub { font-size: 12px; color: var(--t3); white-space: nowrap; }
.footer-nl-form { display: flex; gap: 8px; flex: 1; min-width: 240px; }
.footer-nl-input-wrap { position: relative; flex: 1; min-width: 0; }
.footer-nl-input-wrap .footer-nl-input { width: 100%; box-sizing: border-box; flex: none; padding-left: 36px; }
.footer-nl-input { flex: 1; background: #111; border: 1px solid #2a2a2a; border-radius: 8px; color: var(--t1); font-size: 13px; padding: 10px 14px; outline: none; font-family: inherit; transition: border-color .15s; }
.footer-nl-input:focus { border-color: rgba(196,149,106,.5); }
.footer-nl-btn { background: linear-gradient(175deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.01) 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), inset 0 -1px 0 rgba(0,0,0,.14); border: 1px solid rgba(196,149,106,.3); border-radius: 8px; color: #c4956a; font-size: 13px; font-weight: 700; padding: 10px 18px; cursor: pointer; white-space: nowrap; font-family: inherit; transition: background .15s, border-color .15s; text-shadow: 0 1px 3px rgba(0,0,0,.5), 0 -1px 0 rgba(255,255,255,.04); }
.footer-nl-btn:hover { background: linear-gradient(175deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.04) 100%); border-color: rgba(196,149,106,.5); }

@media (max-width: 900px) {
  .nav-inner { padding: 12px 20px; gap: 12px; }
  .nav-links { display: none; }
  .wrap { padding: 32px 20px 48px; }
  .hero .sub { font-size: 15px; }
  .three-up, .two-up, .steps, .tiers, .actions { grid-template-columns: 1fr; }
}
