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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    background-color: #FAF0DC;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 24px;
    border-radius: 9999px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(250, 240, 220, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(119, 162, 105, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-icon {
    width: 32px;
    height: 32px;
}
.nav-title {
    font-weight: 700;
    font-size: 18px;
    color: #1D1D1D;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #1D1D1D;
    text-decoration: none;
    transition: opacity 0.3s;
}
.nav-link:hover {
    opacity: 0.7;
    transform: none;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #EB8337;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 7px 18px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-cta:hover {
    background-color: #F09550;
    transform: scale(1.03) translateY(-1px);
}
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 22px;
    height: 16px;
    position: relative;
    padding: 0;
}
.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1D1D1D;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}
.nav-hamburger span:first-child { top: 2px; }
.nav-hamburger span:last-child { bottom: 2px; }
.nav-hamburger.open span:first-child {
    top: 7px;
    transform: rotate(45deg);
}
.nav-hamburger.open span:last-child {
    bottom: 7px;
    transform: rotate(-45deg);
}
.nav-mobile {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: rgba(250, 240, 220, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(119, 162, 105, 0.1);
    border-radius: 24px;
    padding: 24px;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    gap: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    font-weight: 500;
    color: #1D1D1D;
    text-decoration: none;
}
.nav-mobile-cta {
    background-color: #EB8337;
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 9999px;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: block; }
}

.container {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 100px;
    padding-top: 120px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.left-content {
    flex: 1;
    max-width: 600px;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
}

h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(270deg, #EB8337, #77A269, #EB8337, #77A269);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tagline {
    font-size: 20px;
    color: #6e6e73;
    margin-bottom: 40px;
}

.download-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #77A269;
    font-weight: 600;
}

.coming-soon-dot {
    width: 8px;
    height: 8px;
    background-color: #77A269;
    border-radius: 50%;
    display: inline-block;
}

.download-btn {
    background-color: #EB8337;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #FFA540;
}

.apple-icon {
    font-size: 22px;
}

.right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* ─── PROMO: Limited Offer Hero ─── */
.promo-hidden {
    display: none !important;
}
.promo-hero {
    background-color: #1D1D1D;
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.promo-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 40px 48px;
    background-color: #1D1D1D;
}
.promo-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.promo-crown {
    width: 64px;
    height: auto;
}
.promo-brand-title {
    font-size: 48px;
    font-weight: 900;
}
.promo-lifetime {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FAF0DC;
    opacity: 0.8;
    margin-bottom: 20px;
}
.promo-discount {
    font-size: 120px;
    font-weight: 900;
    color: #FAF0DC;
    line-height: 1;
    letter-spacing: -0.03em;
}
/* Diagonal stripe ribbons */
.promo-stripes {
    position: relative;
    height: 80px;
    z-index: 1;
}
.promo-stripe {
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    padding: 10px 0;
    background: linear-gradient(270deg, #EB8337, #77A269, #EB8337, #77A269);
    background-size: 300% 100%;
    animation: stripe-gradient 6s ease infinite;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.promo-stripe-1 {
    top: 50%;
    transform: translateY(-100%) rotate(-3deg) scale(1.15);
}
.promo-stripe-2 {
    top: 50%;
    transform: translateY(0%) rotate(3deg) scale(1.15);
}
@keyframes stripe-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.promo-stripe-track {
    display: flex;
    width: max-content;
    animation: stripe-scroll 40s linear infinite;
    white-space: nowrap;
}
.promo-stripe-track-reverse {
    animation: stripe-scroll-reverse 40s linear infinite;
}
.promo-stripe-track span {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #1D1D1D;
    text-transform: uppercase;
}
@keyframes stripe-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes stripe-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
/* Bottom half */
.promo-bottom {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px 80px;
    background-color: #161616;
}
.promo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 560px;
}
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(235, 131, 55, 0.15);
    border: 1px solid rgba(235, 131, 55, 0.3);
    border-radius: 9999px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #EB8337;
    margin-bottom: 28px;
}
.promo-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #EB8337;
    animation: pulse-glow-orange 2s ease-in-out infinite;
}
@keyframes pulse-glow-orange {
    0%, 100% { box-shadow: 0 0 0 0 rgba(235, 131, 55, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(235, 131, 55, 0); }
}
.promo-monthly {
    font-size: 40px;
    font-weight: 900;
    color: #FAF0DC;
    margin-bottom: 8px;
}
.promo-pricing {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
}
.promo-old-price {
    font-size: 22px;
    font-weight: 700;
    color: rgba(250, 240, 220, 0.3);
    text-decoration: line-through;
}
.promo-new-price {
    font-size: 22px;
    font-weight: 700;
    color: rgba(250, 240, 220, 0.6);
}
.promo-per {
    font-size: 18px;
    font-weight: 600;
    color: rgba(250, 240, 220, 0.4);
}
.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #EB8337;
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 48px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 16px;
}
.promo-note-top {
    font-size: 14px;
    color: rgba(250, 240, 220, 0.35);
}
.promo-cta:hover {
    background-color: #F09550;
    transform: scale(1.03) translateY(-1px);
}

/* ─── How It Works Section ─── */
.how-it-works {
    background: linear-gradient(135deg, #EB8337, #77A269);
    padding: 120px 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}
.how-title {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 700px;
}
.how-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 640px;
}

/* ─── Pricing Comparison ─── */
.pricing {
    background-color: #FAF0DC;
    padding: 100px 100px;
    text-align: center;
}
.pricing-heading {
    font-size: 48px;
    font-weight: 900;
    color: #1D1D1D;
    margin-bottom: 12px;
}
.pricing-subheading {
    font-size: 18px;
    color: rgba(29, 29, 29, 0.5);
    margin-bottom: 64px;
}
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}
.pricing-card {
    flex: 1;
    max-width: 340px;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.pricing-card-free {
    background-color: #F0E6D0;
    border: 1px solid rgba(29, 29, 29, 0.06);
}
.pricing-card-pro {
    background-color: #1D1D1D;
    position: relative;
}
.pricing-pro-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(270deg, #EB8337, #77A269);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.pricing-pro-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}
.pricing-crown {
    width: 32px;
    height: auto;
}
.pricing-plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1D1D1D;
    margin-bottom: 4px;
}
.pricing-plan-name-pro {
    font-size: 24px;
    font-weight: 700;
}
.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}
.pricing-amount {
    font-size: 40px;
    font-weight: 900;
    color: #1D1D1D;
}
.pricing-amount-pro {
    font-size: 40px;
    font-weight: 900;
    color: #FAF0DC;
}
.pricing-period {
    font-size: 16px;
    font-weight: 600;
    color: rgba(250, 240, 220, 0.5);
}
.pricing-billed {
    font-size: 14px;
    color: rgba(250, 240, 220, 0.4);
    margin-bottom: 4px;
}
.pricing-offer {
    font-size: 13px;
    font-weight: 700;
    color: #EB8337;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.pricing-features li {
    font-size: 15px;
    color: #1D1D1D;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-features-pro li {
    color: rgba(250, 240, 220, 0.85);
}
.pricing-check {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.pricing-check-muted {
    background: rgba(29, 29, 29, 0.08);
    color: #1D1D1D;
}
.pricing-check-accent {
    background: linear-gradient(135deg, #EB8337, #77A269);
    color: #fff;
}
.pricing-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.pricing-feature-missing {
    opacity: 0.35;
}
.pricing-dash {
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-top: 1px;
}
.pricing-btn {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pricing-btn:hover {
    transform: scale(1.03) translateY(-1px);
}
.pricing-btn-free {
    background: rgba(29, 29, 29, 0.08);
    color: #1D1D1D;
}
.pricing-btn-free:hover {
    background: rgba(29, 29, 29, 0.14);
}
.pricing-btn-pro {
    background-color: #EB8337;
    color: #fff;
}
.pricing-btn-pro:hover {
    background-color: #F09550;
}

/* ─── Features Section (Pro) ─── */
.features {
    background-color: #1D1D1D;
    padding: 100px 100px;
    text-align: center;
}
.pro-crown {
    width: 56px;
    height: auto;
    margin-bottom: 20px;
}
.features-title {
    font-size: 48px;
    font-weight: 900;
    color: #FAF0DC;
    margin-bottom: 12px;
}
.features-title .gradient-text {
    -webkit-text-fill-color: transparent;
}
.features-subtitle {
    font-size: 18px;
    color: rgba(250, 240, 220, 0.5);
    margin-bottom: 64px;
}
.features-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
}
.feature-mockup {
    width: 220px;
    height: auto;
    margin-bottom: 24px;
}
.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FAF0DC;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 15px;
    color: rgba(250, 240, 220, 0.5);
    line-height: 1.5;
}

/* ─── Showcase Section (Light) ─── */
.showcase {
    background-color: #FAF0DC;
    padding: 100px 100px;
    text-align: center;
}
.showcase-title {
    font-size: 48px;
    font-weight: 900;
    color: #1D1D1D;
    margin-bottom: 12px;
}
.showcase-title .gradient-text {
    -webkit-text-fill-color: transparent;
}
.showcase-subtitle {
    font-size: 18px;
    color: rgba(29, 29, 29, 0.5);
    margin-bottom: 64px;
}
.feature-card-light h3 {
    color: #1D1D1D;
}
.feature-card-light p {
    color: rgba(29, 29, 29, 0.5);
}

/* ─── Footer ─── */
.footer-wrap {
    background-color: #1D1D1D;
}
footer {
    background-color: #FAF0DC;
    border-radius: 3rem 3rem 0 0;
    padding: 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 100px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand {
    max-width: 360px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-icon {
    width: 40px;
    height: 40px;
}
.footer-name {
    font-size: 24px;
    font-weight: 700;
    color: #1D1D1D;
}
.footer-desc {
    font-size: 14px;
    color: rgba(29, 29, 29, 0.5);
    line-height: 1.6;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1D1D1D;
    margin-bottom: 4px;
}
.footer-col a {
    font-size: 14px;
    color: rgba(29, 29, 29, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: #1D1D1D;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(29, 29, 29, 0.1);
}
.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(29, 29, 29, 0.4);
    letter-spacing: 0.05em;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #77A269;
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(119, 162, 105, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(119, 162, 105, 0); }
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(29, 29, 29, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        padding: 40px 30px;
        padding-top: 100px;
        text-align: center;
    }
    
    .left-content {
        max-width: 100%;
    }
    
    .logo-title {
        justify-content: center;
    }
    
    .right-content {
        margin-top: 60px;
    }
    
    h1 {
        font-size: 56px;
    }

    .promo-top {
        padding: 80px 24px 32px;
    }
    .promo-discount {
        font-size: 72px;
    }
    .promo-brand-title {
        font-size: 36px;
    }
    .promo-lifetime {
        font-size: 20px;
    }
    .promo-bottom {
        padding: 32px 24px 60px;
    }
    .promo-monthly {
        font-size: 32px;
    }
    .how-it-works {
        padding: 80px 30px;
    }
    .how-title {
        font-size: 36px;
    }
    .pricing {
        padding: 60px 24px;
    }
    .pricing-heading {
        font-size: 36px;
    }
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
    .features, .showcase {
        padding: 60px 30px;
    }
    .features-title, .showcase-title {
        font-size: 36px;
    }
    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    .download-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-inner {
        padding: 48px 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}