:root {
    --gold: #d4af37;
    --gold-bright: #f5c842;
    --gold-dark: #9a7b1a;
    --green-money: #0d3d2a;
    --green-deep: #061a12;
    --ink: #0a1218;
    --cream: #f8f4e8;
    --white: #ffffff;
    --text: #1a1f24;
    --text-muted: #5c6570;
    --accent-hot: #e85d4c;
    --container: min(1120px, 100% - 2rem);
    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Source Sans 3", system-ui, sans-serif;
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.35);
    --radius: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--green-deep);
    line-height: 1.65;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='8' y='72' font-size='48' fill='%23d4af37' font-family='Georgia'%3E%24%3C/text%3E%3C/svg%3E");
    background-size: 120px 120px;
}

.app {
    position: relative;
    z-index: 1;
    padding: 1.25rem 0 3rem;
}

.container {
    width: var(--container);
    margin: 0 auto;
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.section-rule {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* Hero */
.hero-section {
    position: relative;
    color: var(--white);
    padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("hero-money.jpg") center / cover no-repeat;
    transform: scale(1.05);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6, 26, 18, 0.92) 0%, rgba(10, 18, 24, 0.88) 45%, rgba(13, 61, 42, 0.85) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 1.35rem + 2.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
    opacity: 0.92;
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 1.5rem 0;
}

.badge {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
}

.badge--gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--ink); }
.badge--green { background: rgba(34, 139, 90, 0.95); color: var(--white); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--ink);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.55);
}

.btn-large {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    padding: 1rem 2rem;
    margin: 1rem 0;
}

.hero-proof {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.journey {
    margin: 2.5rem auto 0;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 1.75rem;
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
}

.journey-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.journey-step {
    flex: 1;
    min-width: 110px;
    text-align: center;
}

.journey-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.65rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
}

.journey-num--1 { background: var(--accent-hot); }
.journey-num--2 { background: var(--green-money); border: 2px solid var(--gold); }
.journey-num--3 { background: #228b5a; }

.journey-arrow {
    flex: 0 0 auto;
    color: var(--gold-bright);
    font-size: 1.5rem;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.trust-chip {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--green-money), var(--ink));
    color: var(--white);
    padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
    text-align: center;
}

.cta-band h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.cta-band p {
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.cta-note {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    opacity: 0.75;
}

/* Sections */
.section {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem);
}

.section--white { background: var(--white); }
.section--cream { background: #f0ebe0; }

.section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 1.3rem + 1.2vw, 2.35rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--ink);
}

.section-lead {
    text-align: center;
    color: var(--text-muted);
    max-width: 40rem;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    color: var(--ink);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.benefit-card {
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--gold);
}

.benefit-card h3 {
    color: var(--green-money);
    font-size: 1.15rem;
}

.benefit-tag {
    display: inline-block;
    margin-top: 0.85rem;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
}

.benefit-tag--purple { background: linear-gradient(135deg, var(--green-money), #1a5c40); }
.benefit-tag--green { background: linear-gradient(135deg, #228b5a, #1a6b45); }
.benefit-tag--gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--ink); }
.benefit-tag--hot { background: linear-gradient(135deg, var(--accent-hot), #c94a3a); }

.timeline-box {
    background: linear-gradient(135deg, #1a5c40, #228b5a);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.timeline-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.timeline-grid strong {
    display: block;
    font-size: 1.5rem;
    color: var(--gold-bright);
    margin-bottom: 0.25rem;
}

.value-pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-money), var(--ink));
    color: var(--white);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    border: 1px solid var(--gold);
}

.center-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials */
.testimonial-card {
    border-left: 4px solid #228b5a;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.result-tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.stats-box {
    background: linear-gradient(135deg, var(--ink), var(--green-money));
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.stats-box h3 {
    font-family: var(--font-heading);
    margin-bottom: 1.25rem;
}

.stat-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gold-bright);
}

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-question {
    padding: 1rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--ink);
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.25rem 1rem;
    max-height: 280px;
}

/* Pricing */
.pricing-section {
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
    background: linear-gradient(180deg, #0a1218 0%, var(--green-deep) 100%);
}

.price-card {
    max-width: 520px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(13, 61, 42, 0.95), rgba(10, 18, 24, 0.98));
    color: var(--white);
    padding: clamp(2rem, 5vw, 2.75rem);
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.price-card h2 {
    color: var(--gold-bright);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
    margin-bottom: 1.25rem;
}

.price-intro {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.price {
    margin: 1rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem;
}

.current-price {
    font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
    font-weight: 800;
    color: var(--gold-bright);
}

.price-unit {
    font-size: 1.1rem;
    opacity: 0.85;
}

.checkout-note,
.thank-note {
    font-size: 0.88rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.site-footer {
    padding: 2rem 1.5rem 2.5rem;
    background: #ebe6dc;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    text-align: center;
}

.site-footer p {
    max-width: 40rem;
    margin: 0 auto 0.75rem;
}

.site-footer a {
    color: var(--green-money);
    font-weight: 600;
}

.site-footer__copy {
    margin-top: 1rem;
    font-size: 0.8rem;
}

.price-subtitle {
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

.checklist {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    text-align: left;
}

.checklist-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--gold-bright);
}

.checklist li {
    list-style: none;
    padding: 0.35rem 0;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.think-box {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.think-box strong {
    color: var(--gold-bright);
}

.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.email-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.email-input:focus {
    outline: none;
    border-color: var(--gold-bright);
}

/* Thank you */
.thank-you-section {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--cream);
    padding: 2rem 1.25rem;
    overflow-y: auto;
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: #228b5a;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
}

.thank-you-section h1 {
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
}

.next-steps {
    text-align: left;
    max-width: 28rem;
    margin: 1.5rem auto;
}

.next-steps ol {
    padding-left: 1.25rem;
    color: var(--text-muted);
}

.bonus-offer {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    padding: 1.5rem;
    border-radius: var(--radius);
    max-width: 28rem;
    margin: 1.5rem auto;
    color: var(--ink);
}

.btn-secondary {
    background: var(--text-muted);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .journey-arrow { display: none; }
    .journey-steps { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn-primary:hover { transform: none; }
}
