:root {
  --navy-950: #0f1c29;
  --navy-900: #17283a;
  --navy-850: #1d3348;
  --steel-700: #4b6378;
  --sand-100: #f6f1e4;
  --sand-150: #efe7d4;
  --sand-200: #e2d8c0;
  --gold-400: #cab07a;
  --gold-500: #b0935f;
  --ink-900: #1d3043;
  --ink-700: #3f556a;
  --line-soft: rgba(75, 95, 114, 0.3);
  --line-light: rgba(255, 255, 255, 0.18);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 22px 50px rgba(18, 33, 48, 0.16);
  --shadow-strong: 0 28px 65px rgba(7, 14, 22, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink-900);
  line-height: 1.5;
  background: linear-gradient(180deg, #fbf7ec 0%, var(--sand-100) 34%, #e7ddc8 100%);
}

.bg-layer {
  position: fixed; inset: 0; z-index: -5; pointer-events: none; opacity: 0.16;
  background-image:
    linear-gradient(to right, rgba(27, 45, 63, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(27, 45, 63, 0.12) 1px, transparent 1px);
  background-size: 88px 88px;
}

.bg-glow { position: fixed; z-index: -4; border-radius: 50%; pointer-events: none; filter: blur(8px); }
.bg-glow-a { width: 560px; height: 560px; top: -220px; right: -170px; background: radial-gradient(circle, rgba(186, 158, 103, 0.35), rgba(186, 158, 103, 0.03) 72%, transparent 82%); animation: glow-a 11s ease-in-out infinite; }
.bg-glow-b { width: 520px; height: 520px; left: -150px; bottom: -190px; background: radial-gradient(circle, rgba(29, 51, 72, 0.28), rgba(29, 51, 72, 0.02) 70%, transparent 82%); animation: glow-b 13s ease-in-out infinite; }

@keyframes glow-a { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-10px, 16px); } }
@keyframes glow-b { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(14px, -10px); } }

.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding-block: 4rem; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 30;
  border-bottom: 1px solid rgba(128, 122, 108, 0.4);
  backdrop-filter: blur(16px);
  background: rgba(248, 242, 229, 0.74);
}

.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink-900); text-decoration: none; }
.brand img { width: 44px; height: 44px; }
.brand strong { display: block; font-family: "Plus Jakarta Sans", system-ui, sans-serif; font-size: 1.24rem; letter-spacing: 0.03em; }
.brand span { display: block; margin-top: -0.08rem; font-size: 0.74rem; letter-spacing: 0.13em; color: var(--steel-700); text-transform: uppercase; }

.header-nav { display: flex; align-items: center; gap: 1rem; }
.header-nav a { text-decoration: none; color: var(--ink-700); font-size: 0.88rem; font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: 0.58rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: 999px; border: 1px solid transparent; text-decoration: none;
  padding: 0.74rem 1.12rem; font-size: 0.88rem; font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { color: #f7fbff; background: linear-gradient(145deg, #1c3247 0%, #132537 100%); box-shadow: 0 14px 30px rgba(15, 28, 41, 0.34); }
.btn-outline { color: var(--navy-900); border-color: rgba(33, 52, 69, 0.44); background: rgba(255, 255, 255, 0.64); }

/* MARQUEE */
.brand-loop { border-top: 1px solid rgba(168, 150, 117, 0.4); border-bottom: 1px solid rgba(168, 150, 117, 0.4); background: linear-gradient(90deg, rgba(22, 40, 56, 0.95), rgba(33, 53, 70, 0.95)); overflow: hidden; }
.loop-track { width: max-content; display: flex; gap: 1.4rem; padding: 0.56rem 0; animation: loop 34s linear infinite; }
.loop-track span { color: #d2e0ea; font-size: 0.74rem; letter-spacing: 0.14em; font-weight: 700; }
@keyframes loop { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* TYPOGRAPHY */
.eyebrow { margin: 0; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.76rem; font-weight: 800; color: var(--steel-700); }
h1, h2, h3 { margin: 0; line-height: 1.2; }
h1, h2 { font-family: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif; letter-spacing: 0; font-weight: 700; }
h1 { margin-top: 0.92rem; font-size: clamp(1.9rem, 4.2vw, 3.85rem); max-width: 19ch; }
h2 { margin-top: 0.82rem; font-size: clamp(1.55rem, 2.6vw, 2.5rem); }
h3 { font-size: 1.06rem; font-family: "Manrope", system-ui, sans-serif; font-weight: 800; }

/* HERO */
.hero { padding-top: 3rem; padding-bottom: 2.8rem; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: 1.05rem; }
.hero-lead { margin: 1.08rem 0 0; color: var(--ink-700); font-size: clamp(1.04rem, 1.1vw, 1.15rem); max-width: 67ch; }
.hero-ctas { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.56rem; }
.hero-pillars { margin-top: 1.22rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.65rem; }
.hero-pillars article { border: 1px solid var(--line-soft); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.7); padding: 0.82rem; }
.hero-pillars p { margin: 0.35rem 0 0; color: var(--ink-700); font-size: 0.84rem; }

.hero-panel { border: 1px solid var(--line-light); border-radius: var(--radius-xl); background: linear-gradient(155deg, rgba(16, 31, 44, 0.97), rgba(26, 45, 62, 0.96)); color: #e6eef5; padding: 1rem; box-shadow: var(--shadow-strong); }
.hero-panel header { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.hero-panel header p { margin: 0; color: #bdd0de; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.71rem; font-weight: 700; }
.hero-panel header span { border: 1px solid rgba(202, 176, 122, 0.52); border-radius: 999px; padding: 0.3rem 0.62rem; font-size: 0.73rem; color: #f2ddb5; }
.hero-panel img { width: 100%; display: block; border-radius: 14px; }
.hero-panel ul { margin: 0.85rem 0 0; padding-left: 1.1rem; display: grid; gap: 0.42rem; color: #cfdeea; }

/* REEL */
.reel { padding-top: 0.8rem; padding-bottom: 2.6rem; }
.reel-shell { position: relative; border: 1px solid rgba(201, 188, 160, 0.5); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-strong); min-height: 380px; }
.reel-video { width: 100%; height: 100%; min-height: 380px; object-fit: cover; display: block; }
.reel-shell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9, 18, 28, 0.26) 0%, rgba(9, 18, 28, 0.1) 36%, transparent 62%); }
.reel-overlay { position: absolute; inset: auto auto 1rem 1rem; z-index: 2; max-width: min(620px, calc(100% - 2rem)); border: 1px solid rgba(210, 227, 241, 0.24); border-radius: var(--radius-lg); background: rgba(13, 24, 35, 0.24); backdrop-filter: blur(6px); padding: 0.95rem; }
.reel-overlay .eyebrow { color: #bed2e3; }
.reel-overlay h2 { margin-top: 0.58rem; color: #f5fbff; font-size: clamp(1.5rem, 2.5vw, 2.3rem); }
.reel-overlay p { margin: 0.5rem 0 0; color: #d2e1ee; }

/* SERVICES (dark section) */
.section-dark { background: linear-gradient(180deg, #0f1c29, #182b3d); color: #e9f2f9; border-top: 1px solid rgba(255, 255, 255, 0.08); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.section-dark .eyebrow { color: #bad0e0; }
.section-head { max-width: 910px; }

.system-grid { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; }
.system-card { border: 1px solid rgba(223, 236, 248, 0.23); border-radius: var(--radius-lg); background: linear-gradient(170deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)); padding: 1rem; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.system-card:hover { transform: translateY(-4px); border-color: rgba(202, 176, 122, 0.5); box-shadow: 0 18px 36px rgba(8, 18, 29, 0.35); }
.system-card span { display: inline-flex; border: 1px solid rgba(202, 176, 122, 0.44); border-radius: 999px; padding: 0.26rem 0.6rem; font-size: 0.74rem; color: #f0dbb4; margin-bottom: 0.6rem; }
.system-card h3 { color: #f7fbff; }
.system-card p { margin: 0.45rem 0 0; color: #cfdeea; font-size: 0.9rem; }

/* HOW IT WORKS */
.how-it-works { background: linear-gradient(165deg, rgba(244, 238, 224, 0.88), rgba(229, 220, 200, 0.9)); }
.steps-grid { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; }
.step-card { border: 1px solid rgba(117, 121, 126, 0.28); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.8); box-shadow: var(--shadow-soft); padding: 1rem; transition: transform 0.25s ease; }
.step-card:hover { transform: translateY(-4px); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(145deg, #1c3247, #132537); color: #f0dbb4; font-size: 1.1rem; font-weight: 800; margin-bottom: 0.6rem; }
.step-card h3 { margin-bottom: 0.4rem; }
.step-card p { margin: 0; color: var(--ink-700); font-size: 0.9rem; }

/* COMPARE */
.compare { background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(241, 234, 218, 0.62)); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.compare-card { border-radius: var(--radius-lg); padding: 1rem; }
.compare-card h3 { margin-top: 0.55rem; font-size: 1.2rem; }
.compare-card ul { margin: 0.7rem 0 0; padding-left: 1.1rem; display: grid; gap: 0.42rem; }
.compare-card.weak { border: 1px solid rgba(140, 140, 140, 0.34); background: rgba(255, 255, 255, 0.72); }
.compare-card.weak ul { color: var(--ink-700); }
.compare-card.strong { border: 1px solid rgba(35, 53, 70, 0.44); background: linear-gradient(150deg, rgba(17, 32, 46, 0.95), rgba(30, 51, 70, 0.95)); color: #eff6fc; box-shadow: var(--shadow-strong); }
.compare-card.strong .eyebrow { color: #c6d7e5; }
.compare-card.strong ul { color: #d6e3ee; }

/* ZONES */
.section-light { background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(245, 238, 222, 0.52)); }
.zone-grid { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.72rem; }
.zone-card { border: 1px solid rgba(117, 121, 126, 0.28); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.8); box-shadow: var(--shadow-soft); padding: 1rem; min-height: 170px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.zone-card:hover { transform: translateY(-4px); box-shadow: 0 24px 42px rgba(18, 33, 48, 0.2); }
.zone-card p { margin: 0.42rem 0 0; color: var(--ink-700); font-size: 0.9rem; }

/* CTA / CONTACT */
.cta-block { background: linear-gradient(180deg, rgba(247, 242, 229, 0.7), rgba(230, 222, 204, 0.8)); }
.cta-layout { border: 1px solid rgba(128, 119, 98, 0.45); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 237, 220, 0.86)); box-shadow: var(--shadow-soft); padding: 1.1rem; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 1rem; }
.cta-copy p { color: var(--ink-700); max-width: 64ch; }
.direct-links { margin-top: 1rem; display: grid; gap: 0.33rem; }
.direct-links a { text-decoration: none; color: var(--navy-900); font-weight: 800; }

.lead-form { border: 1px solid rgba(122, 113, 93, 0.42); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.9); padding: 1rem; display: grid; gap: 0.64rem; }
.lead-form label { display: grid; gap: 0.34rem; font-size: 0.84rem; font-weight: 700; }
.lead-form small { font-weight: 400; color: var(--ink-700); }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; border: 1px solid rgba(92, 104, 116, 0.45); border-radius: 12px; padding: 0.72rem 0.75rem; font: inherit; color: var(--ink-900); background: rgba(255, 255, 255, 0.95); }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { outline: none; border-color: rgba(19, 37, 55, 0.82); box-shadow: 0 0 0 3px rgba(27, 52, 76, 0.13); }
.form-note { margin: 0; font-size: 0.8rem; color: var(--ink-700); }

/* FOOTER */
.site-footer { border-top: 1px solid rgba(125, 118, 104, 0.5); background: rgba(248, 244, 234, 0.92); }
.footer-inner { padding: 1.2rem 0 1.7rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 0.68rem; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand strong { display: block; font-family: "Plus Jakarta Sans", system-ui, sans-serif; font-size: 1.2rem; }
.footer-brand span { display: block; color: var(--ink-700); font-size: 0.82rem; }
.footer-links { text-align: right; }
.footer-links p { margin: 0; color: var(--ink-700); font-size: 0.86rem; }
.footer-legal a { color: var(--ink-700); text-decoration: none; }

/* FLOATING CTA */
.floating-cta {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 40;
  text-decoration: none; color: #fff;
  background: #25d366; border: none; border-radius: 999px;
  padding: 0.8rem 1.07rem; font-weight: 800; font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: transform 0.2s ease;
}
.floating-cta:hover { transform: translateY(-2px); }
.floating-cta svg { flex-shrink: 0; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.68s ease, transform 0.68s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1090px) {
  .header-nav { display: none; }
  .hero, .cta-layout { grid-template-columns: 1fr; }
  .hero-pillars { grid-template-columns: 1fr; }
  .system-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zone-grid, .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(1180px, calc(100% - 1.2rem)); }
  .section { padding-block: 3.05rem; }
  .header-inner { min-height: 68px; }
  .header-actions .btn-outline { display: none; }
  .loop-track { gap: 0.95rem; }
  .loop-track span { font-size: 0.66rem; letter-spacing: 0.16em; }
  h1 { font-size: clamp(1.75rem, 9.2vw, 2.6rem); max-width: none; }
  h2 { font-size: clamp(1.45rem, 7.2vw, 2.1rem); }
  .hero-ctas .btn { width: 100%; }
  .system-grid, .zone-grid, .steps-grid { grid-template-columns: 1fr; }
  .reel-shell, .reel-video { min-height: 300px; }
  .floating-cta { left: 0.62rem; right: 0.62rem; text-align: center; justify-content: center; }
}


/* ====== MOBILE HAMBURGER MENU ====== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1d3043;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.menu-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}
.menu-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        order: 2;
    }
    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
    }
    .header-nav a {
        font-size: 1.25rem;
        color: #1d3043;
    }
    .menu-open .header-nav {
        display: flex !important;
        height: 100vh !important;
        width: 100vw !important;
    }
    .header-actions {
        order: 3;
    }
    .header-actions .btn-outline {
        display: none;
    }
}

/* ====== FOOTER LEGAL LINKS ====== */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.8rem;
}
.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.footer-legal a:hover {
    color: rgba(255,255,255,0.8);
}

/* ====== COOKIE BANNER ====== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1d3043;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 9999;
    font-size: 0.85rem;
}
.cookie-banner a {
    color: #c8a96e;
}
.cookie-banner button {
    background: #c8a96e;
    color: #1d3043;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}


/* ========== PHASE 2 - SOCIAL PROOF ========== */
.social-proof {
  background: #f8f6f2;
  padding: 3rem 0;
}
.proof-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.proof-stat {
  text-align: center;
}
.proof-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1d3043;
  line-height: 1.2;
}
.proof-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.3rem;
}
.proof-platforms {
  text-align: center;
  border-top: 1px solid #e0ddd7;
  padding-top: 2rem;
}
.proof-platforms-label {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.platform-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.platform-logo {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1d3043;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

/* ========== PHASE 2 - INCOME ESTIMATOR ========== */
.income-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.income-card {
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s;
}
.income-card:hover {
  box-shadow: 0 4px 20px rgba(29,48,67,0.08);
}
.income-card h3 {
  color: #1d3043;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.income-range {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c8a96e;
  margin-bottom: 0.8rem;
}
.income-detail {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}
.income-disclaimer {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .proof-stats {
    gap: 1.5rem;
  }
  .proof-number {
    font-size: 1.5rem;
  }
  .platform-logos {
    gap: 1rem;
  }
  .platform-logo {
    font-size: 0.9rem;
  }
  .income-grid {
    grid-template-columns: 1fr;
  }
}
