/* ============================================================
   CashFlowEmpire2025 - Design System
   Theme: "Local Alchemist" (dark navy + mint glow + gradient CTA)
   Fonts: Gabarito (display) + Manrope (body)
   ============================================================ */

:root {
  --page-bg: #08111f;
  --page-bg2: #0a1526;
  --hero-bg-start: #08111f;
  --hero-bg-end: #13284b;
  --hero-glow: rgba(117, 244, 212, 0.32);
  --page-text: #f7fbff;
  --body-text: #d8e5f2;
  --heading-text: #ffffff;
  --link-text: #75f4d4;
  --link-dark: #0b245b;
  --mint: #75f4d4;
  --accent-2: #5389ff;
  --accent-3: #813ff0;
  --ink: #0b245b;
  --muted-ink: #47648f;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-2: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --media-radius: 28px;
  --cta-gradient: linear-gradient(112deg, #087ff2 0%, #315eed 52%, #813ff0 100%);
  --cta-gradient-soft: linear-gradient(112deg, rgba(8,127,242,.18) 0%, rgba(49,94,237,.18) 52%, rgba(129,63,240,.18) 100%);
  --font-display: "Gabarito", "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-lg: 0 28px 60px rgba(2, 10, 26, 0.55);
  --shadow-glow: 0 0 0 1px rgba(117,244,212,.18), 0 18px 50px rgba(8,127,242,.24);
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-text);
  background: radial-gradient(1200px 600px at 50% -8%, var(--hero-bg-end), transparent 60%),
              var(--page-bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--heading-text);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.55em;
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.9rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.65rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
p { margin: 0 0 1.1em; }
a { color: var(--link-text); text-decoration: none; transition: filter .2s ease, color .2s ease; }
a:hover { filter: brightness(1.08); }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--mint); color: #07111d; }

.wrap { width: min(var(--maxw), 92%); margin: 0 auto; }
.center { text-align: center; }
.muted { color: var(--hero-muted, rgba(247,251,255,.78)); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--mint);
  padding: 7px 16px;
  border: 1px solid rgba(117,244,212,.34);
  border-radius: 999px;
  background: rgba(117,244,212,.08);
  margin-bottom: 18px;
}
.grad-text {
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}
.grad-mint {
  background: linear-gradient(100deg, #75f4d4, #5389ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@keyframes gradientShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: 1.06rem;
  line-height: 1;
  padding: 18px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  text-align: center;
  will-change: transform;
  transition: transform .18s ease, box-shadow .3s ease, filter .2s ease;
}
.btn-primary {
  color: #fff;
  background: var(--cta-gradient);
  box-shadow: 0 18px 42px rgba(8,127,242,.42);
  animation: pulseGlow 2.6s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.06); box-shadow: 0 24px 54px rgba(8,127,242,.55); }
.btn-ghost {
  color: var(--page-text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-lg { padding: 22px 40px; font-size: 1.18rem; }
.btn-block { width: 100%; }
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 18px 42px rgba(8,127,242,.5), 0 0 0 0 rgba(117,244,212,.42); }
  50% { box-shadow: 0 18px 42px rgba(8,127,242,.55), 0 0 0 16px rgba(117,244,212,0); }
}
.btn .chev { transition: transform .2s ease; }
.btn:hover .chev { transform: translateX(4px); }

/* Section rhythm */
section { position: relative; }
.section-pad { padding: clamp(64px, 8vw, 118px) 0; }
.section-pad-sm { padding: clamp(40px, 5vw, 72px) 0; }
.alt-dark { background: linear-gradient(180deg, rgba(8,17,31,0), #0a1526 20%, #0a1526 80%, rgba(8,17,31,0)); }
.glass {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-7px); border-color: rgba(117,244,212,.4); box-shadow: var(--shadow-lg); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* Nav */
header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(8,17,31,.72);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.12rem; letter-spacing: -.02em; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--cta-gradient);
  display: grid; place-items: center; color: #fff; font-size: 1rem; font-weight: 900;
}
.brand span b { color: var(--mint); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--body-text); font-weight: 600; font-size: .95rem; }
.nav-links .btn { padding: 11px 20px; font-size: .9rem; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { position: relative; padding: clamp(66px, 9vw, 128px) 0 clamp(58px, 7vw, 96px); overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; pointer-events: none; }
.orb-a { width: 480px; height: 480px; background: radial-gradient(circle, rgba(117,244,212,.5), transparent 70%); top: -140px; left: -120px; animation: float 14s ease-in-out infinite; }
.orb-b { width: 520px; height: 520px; background: radial-gradient(circle, rgba(83,137,255,.55), transparent 70%); top: 40px; right: -160px; animation: float 18s ease-in-out infinite reverse; }
.orb-c { width: 380px; height: 380px; background: radial-gradient(circle, rgba(129,63,240,.5), transparent 70%); bottom: -80px; left: 34%; animation: float 22s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-30px) translateX(20px)} }
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero h1 { max-width: 18ch; margin-inline: auto; }
.hero .sub { max-width: 62ch; margin: 22px auto 0; font-size: 1.16rem; color: var(--hero-muted, rgba(247,251,255,.82)); }
.hero-cta { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-note { font-size: .9rem; color: var(--hero-muted, rgba(247,251,255,.66)); }

/* Hero bullets */
.hero-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; max-width: 900px; margin: 40px auto 0; text-align: left; }
.hero-list li {
  list-style: none; display: flex; gap: 13px; align-items: flex-start;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-soft);
  padding: 15px 18px; border-radius: 15px; font-size: 1rem;
}
.check { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--cta-gradient); display: grid; place-items: center; color: #fff; font-size: .8rem; margin-top: 2px; }

/* Trust strip */
.trust { padding: 26px 0; border-block: 1px solid var(--line-soft); background: rgba(8,17,31,.4); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px 44px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 9px; color: var(--body-text); font-weight: 600; font-size: .95rem; }
.trust-item .ico { color: var(--mint); font-size: 1.15rem; }
.stars { color: #ffd23f; letter-spacing: 2px; }

/* Two column intro */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 58px); align-items: center; }
.split .lead { font-size: 1.12rem; }

/* Comparison */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare.col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; position: relative; overflow: hidden; }
.compare .hide { background: linear-gradient(180deg, rgba(129,63,240,.14), rgba(8,17,31,.4)); border-color: rgba(129,63,240,.34); }
.compare .win { background: linear-gradient(180deg, rgba(117,244,212,.14), rgba(8,17,31,.4)); border-color: rgba(117,244,212,.34); }
.compare .tag { display: inline-block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 800; padding: 6px 13px; border-radius: 999px; margin-bottom: 18px; }
.compare .hide .tag { color: #ff9ab0; background: rgba(207,46,46,.16); border: 1px solid rgba(255,154,176,.3); }
.compare .win .tag { color: var(--mint); background: rgba(117,244,212,.14); border: 1px solid rgba(117,244,212,.3); }
.clist { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.clist li { display: flex; gap: 11px; align-items: flex-start; font-size: 1rem; color: var(--body-text); }
.cmark { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; margin-top: 2px; }
.compare .hide .cmark { background: rgba(207,46,46,.22); color: #ff9ab0; }
.compare .win .cmark { background: rgba(117,244,212,.18); color: var(--mint); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; }
.step .num { font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; line-height: 1; background: var(--cta-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 14px; }

/* Feature grid */
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feed .ico { width: 54px; height: 54px; border-radius: 15px; background: var(--cta-gradient-soft); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px; }
.feed h4 { font-size: 1.18rem; margin-bottom: 8px; }
.feed p { font-size: .98rem; color: var(--body-text); }

/* Roadmap timeline */
.roadmap { max-width: 760px; margin: 0 auto; }
.rm { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); align-items: flex-start; }
.rm .dot { width: 46px; height: 46px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--mint); font-size: 1.05rem; }
.rm h4 { margin-bottom: 5px; font-size: 1.16rem; }
.rm p { margin: 0; color: var(--body-text); }

/* Diagram / illustration frames */
.frame {
  position: relative; border-radius: var(--media-radius);
  padding: 34px; background: linear-gradient(160deg, var(--media-bg-start, rgba(117,244,212,.2)), var(--media-bg-end, rgba(83,123,255,.2)));
  border: 1px solid rgba(255,255,255,.18);
  overflow: hidden;
  box-shadow: inset 0 1px rgba(255,255,255,.12);
}
.frame .glass { border-radius: 16px; padding: 16px 18px; }
.flywheel { display: grid; place-items: center; position: relative; }
.flywheel .ring { position: relative; width: 260px; height: 260px; }
.flywheel .ring svg { width: 100%; height: 100%; animation: spin 28s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.flywheel .core { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; font-family: var(--font-display); }
.flywheel .core b { display: block; background: var(--cta-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-size: 1.5rem; line-height: 1; }
.flywheel .core small { color: var(--muted, rgba(247,251,255,.7)); font-size: .8rem; }
.flywheel .petal { position: absolute; font-size: .78rem; font-weight: 700; color: var(--body-text); text-align: center; max-width: 90px; }

/* Timer / urgency ticker */
.urgency { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,154,99,.1); border: 1px solid rgba(255,201,99,.3); color: #ffd9a8; padding: 11px 20px; border-radius: 999px; font-weight: 700; font-size: .95rem; }
.urgency .dot { width: 9px; height: 9px; border-radius: 50%; background: #ffc963; animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* Pricing */
.price-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 26px; align-items: stretch; }
.price-card { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); border: 1px solid rgba(117,244,212,.35); border-radius: var(--radius-lg); padding: 34px; position: relative; overflow: hidden; }
.price-card::before { content:""; position:absolute; inset:0; background: radial-gradient(400px 200px at 50% -20%, rgba(117,244,212,.22), transparent 70%); pointer-events:none; }
.stack { list-style: none; margin: 0 0 24px; padding: 0; }
.stack li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.stack .k { color: var(--body-text); }
.stack .v { color: #fff; font-weight: 800; white-space: nowrap; }
.stack .total { display: flex; justify-content: space-between; padding: 16px 0 6px; border-bottom: none; }
.total .k { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.15rem; }
.total .v { color: var(--mint); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.price-tag { text-align: center; margin-bottom: 20px; }
.price-tag .was { color: var(--muted-ink, rgba(247,251,255,.5)); text-decoration: line-through; font-size: 1.3rem; font-weight: 700; }
.price-tag .now { font-family: var(--font-display); font-weight: 900; font-size: clamp(3.4rem, 7vw, 4.8rem); line-height: 1; background: var(--cta-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.price-tag .per { color: var(--body-text); }
.inline-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; align-items: center; margin-top: 18px; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.05); font-size: .85rem; font-weight: 600; color: var(--body-text); }

/* Bonus cards */
.bonus { display: grid; grid-template-columns: auto 1fr; gap: 20px; }
.badge { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 18px; background: var(--cta-gradient); color: #fff; font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; box-shadow: 0 12px 30px rgba(8,127,242,.4); }
.bonus h4 { margin-bottom: 6px; }
.bonus .val { color: var(--mint); font-weight: 800; font-family: var(--font-display); font-size: 1.08rem; }
.bonus p { margin: 8px 0 0; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
details { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; margin-bottom: 14px; overflow: hidden; }
summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.06rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.6rem; color: var(--mint); line-height: 1; transition: transform .2s ease; flex: none; }
details[open] summary::after { transform: rotate(45deg); }
details .a { padding: 0 24px 22px; color: var(--body-text); }

/* CTA band */
.cta-band { text-align: center; position: relative; overflow: hidden; padding: clamp(58px, 7vw, 100px) 0; }
.cta-band h2 { max-width: 20ch; margin: 0 auto .5em; }

/* Footer */
footer { border-top: 1px solid var(--line-soft); background: rgba(4,10,20,.6); padding: 54px 0 30px; font-size: .92rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
.foot-col h5 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin-bottom: 14px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-col a { color: var(--body-text); }
.foot-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; color: var(--hero-muted, rgba(247,251,255,.6)); }
.wplus_spdisclaimer { margin-top: 24px; font-size: .85rem; color: rgba(247,251,255,.55); border-top: 1px solid var(--line-soft); padding-top: 20px; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(8,17,31,.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  transform: translateY(110%); transition: transform .3s ease;
}
.sticky-cta.show { transform: none; }
.sticky-cta .pr { font-family: var(--font-display); font-weight: 800; color: #fff; }
.sticky-cta .pr s { color: var(--hero-muted, rgba(247,251,255,.5)); }
.sticky-cta .pr em { font-style: normal; color: var(--mint); }

/* Utility */
.mt0 { margin-top:0 } .mb0 { margin-bottom:0 }
.small { font-size: .92rem; }
.tick-list { list-style:none; margin:0; padding:0; display:grid; gap:13px; }
.tick-list li { display:flex; gap:12px; align-items:flex-start; }

/* ============ INNER PAGES (Disclaimer / Privacy / Support) ============ */
.page-hero { padding: clamp(54px, 7vw, 92px) 0 40px; }
.doc { max-width: 820px; margin: 0 auto; }
.doc h1 { margin-bottom: 8px; }
.doc .meta { color: var(--hero-muted, rgba(247,251,255,.6)); font-size: .92rem; margin-bottom: 30px; }
.doc h2 { font-size: 1.45rem; margin: 32px 0 12px; }
.doc p, .doc li { color: var(--body-text); }
.doc ul, .doc ol { padding-left: 20px; }
.doc .box { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px 26px; margin: 22px 0; }
.doc .box h3 { font-size: 1.15rem; margin-bottom: 8px; }
.doc a.email { font-weight: 700; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .split, .compare, .price-wrap, .foot-grid { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-list { grid-template-columns: 1fr; }
  .foot-grid { gap: 26px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid2, .grid3 { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 6px; padding: 16px 6%; background: rgba(8,17,31,.98); border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
  .compare.col { padding: 22px; }
  .frame { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
