Sign Up

Sign Up | PCI Power Couple Investments
https://cdn.tailwindcss.com
https://js.stripe.com/v3/

body { font-family: ‘Inter’, sans-serif; }

Join the Tier

Your path to collaborative wealth starts here. Below are the benefits included:

    Proceed to Payment

    Need help? Contact us

    const perks = {
    starter: {
    name: “Starter”,
    price: 50,
    benefits: [
    “✔️ Growth-fund access”,
    “✔️ Live dashboard”,
    “✔️ 10% quarterly withdrawal cap”
    ],
    checkout: “https://buy.stripe.com/test_4gw5mddXb60F0Ra8wx” // Replace with your actual test link
    },
    builder: {
    name: “Builder”,
    price: 100,
    benefits: [
    “✔️ All Starter perks”,
    “✔️ Quarterly strategy call”,
    “✔️ 15% quarterly withdrawal cap”
    ],
    checkout: “https://buy.stripe.com/test_4gwbLb5Wn3AV6bu289”
    },
    legacy: {
    name: “Legacy”,
    price: 250,
    benefits: [
    “✔️ All Builder perks”,
    “✔️ Dedicated financial coach”,
    “✔️ 20% quarterly withdrawal cap”
    ],
    checkout: “https://buy.stripe.com/test_7sI6r5cTb2zNdcAeUW”
    }
    };

    const urlParams = new URLSearchParams(window.location.search);
    const tierKey = urlParams.get(“tier”) || “starter”;
    const tier = perks[tierKey];

    document.getElementById(“tierName”).textContent = tier.name;
    document.getElementById(“tierPerks”).innerHTML = tier.benefits.map(b => `

  • ${b}
  • `).join(”);
    document.getElementById(“stripeButton”).addEventListener(“click”, () => {
    window.location.href = tier.checkout;
    });