:root {
    /* Vintage Couture Palette */
    --color-navy: #003057;
    --color-teal: #48a9c5;
    --color-lavender: #b18fcf;
    --color-pink: #ff6f91;
    --color-red: #e63946;
    --color-orange: #f4a261;
    --color-yellow: #e9c46a;
    --color-cream: #fbf8f1;

    --font-heading: 'Shrikhand', cursive;
    --font-body: 'Outfit', sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    --border-radius: 12px;
    --shadow-retro: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Shrikhand is bold by default */
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--color-navy);
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-retro);
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--color-red);
    color: white;
    border: none;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    background-color: var(--color-teal);
    color: white;
    border: none;
}

.btn-large {
    font-size: 1.25rem;
    padding: 16px 32px;
}

/* Nav */
.sticky-nav {
    position: sticky;
    top: 0;
    background: rgba(251, 248, 241, 0.95);
    backdrop-filter: blur(5px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid var(--color-navy);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-navy);
    transform: rotate(-2deg);
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero-section {
    padding: calc(var(--spacing-lg) * 1.5) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, var(--color-lavender) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, var(--color-yellow) 0%, transparent 20%);
}

.headline {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--color-navy);
    text-shadow: 4px 4px 0px var(--color-teal);
}

.headline .highlight {
    color: var(--color-pink);
    text-shadow: 4px 4px 0px var(--color-navy);
}

.sub-headline {
    font-size: 1.35rem;
    max-width: 750px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.8;
}

.hero-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-form input {
    padding: 16px 24px;
    font-size: 1.1rem;
    border: 3px solid var(--color-navy);
    border-radius: 50px;
    width: 350px;
    font-family: var(--font-body);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.hero-form button {
    font-size: 1.1rem;
    padding: 16px 32px;
    font-weight: 900;
    letter-spacing: 0.5px;
    border-width: 3px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
}

.hero-form button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px rgba(0, 0, 0, 0.2);
}

.micro-copy {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Nightmare Section */
.nightmare-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-teal);
    color: white;
    position: relative;
}

.nightmare-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-navy) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.ghost-town-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    color: var(--color-navy);
    transform: rotate(-3deg);
    box-shadow: 12px 12px 0px var(--color-navy);
    position: relative;
    border: 3px solid var(--color-navy);
}

.ghost-town-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--color-navy);
    border-radius: 10px;
    opacity: 0.2;
}

.notification-mock .notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5rem;
}

.platform-icon {
    font-weight: bold;
    font-size: 1.2rem;
    background: var(--color-red);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.time {
    font-size: 0.8rem;
    color: #888;
}

.stars {
    color: var(--color-orange);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.math-content .section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.text-red {
    color: var(--color-red);
    text-decoration: underline wavy var(--color-yellow);
}

.stat-quote {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
    border-left: 4px solid var(--color-yellow);
    padding-left: 1rem;
}

.consequences-list {
    list-style: none;
}

.consequences-list li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* How It Works */
.how-it-works-section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-navy);
}

.text-center {
    text-align: center;
}

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

.step-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-navy);
    box-shadow: var(--shadow-retro);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    opacity: 0.2;
    margin-bottom: -1rem;
}

.card-blue {
    background-color: rgba(72, 169, 197, 0.1);
    border-color: var(--color-teal);
}

.card-purple {
    background-color: rgba(177, 143, 207, 0.1);
    border-color: var(--color-lavender);
}

.card-pink {
    background-color: rgba(255, 111, 145, 0.1);
    border-color: var(--color-pink);
}

/* SEO Section */
/* SEO Section */
.seo-section {
    padding: calc(var(--spacing-lg) * 2) 0;
    /* More spacious */
    background-color: var(--color-navy);
    color: white;
    overflow: hidden;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.seo-content {
    text-align: left;
}

.seo-text {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 500px;
}

.seo-section .section-title {
    color: white;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* Map Pack Visual */
.map-pack-visual {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    transform: rotate(2deg);
}

.map-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.map-card.winner {
    transform: scale(1.05) translateX(-10px);
    border: 3px solid var(--color-yellow);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

.rank-badge {
    background: var(--color-navy);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
}

.winner .rank-badge {
    background: var(--color-red);
}

.biz-info {
    flex-grow: 1;
}

.biz-name {
    font-weight: 800;
    font-size: 1.1rem;
}

.biz-rating {
    color: var(--color-orange);
    font-size: 0.9rem;
}

.biz-rating .count {
    color: #888;
}

.biz-status {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--color-teal);
    border: 1px solid var(--color-teal);
    padding: 2px 6px;
    border-radius: 4px;
}

.highlight-yellow {
    color: var(--color-yellow);
    position: relative;
    display: inline-block;
}

.highlight-yellow::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--color-red);
    z-index: -1;
    opacity: 0.6;
    transform: skewX(-15deg);
}

/* Pricing */
.pricing-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.pricing-card {
    background: var(--color-lavender);
    padding: 3rem;
    border-radius: 20px;
    display: inline-block;
    max-width: 600px;
    box-shadow: 10px 10px 0px var(--color-navy);
    border: 3px solid var(--color-navy);
}

.pricing-card .section-title {
    margin-bottom: 0.5rem;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-navy);
    margin: 1.5rem 0;
}

.price-tag .period {
    font-size: 1.5rem;
    font-family: var(--font-body);
}

footer {
    padding: 2rem 0;
    text-align: center;
    background-color: var(--color-navy);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .hero-form {
        flex-direction: column;
        align-items: center;
    }

    .hero-form input {
        width: 100%;
        max-width: 300px;
    }
}
/* Waitlist Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 48, 87, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-cream);
    padding: 2.5rem;
    border-radius: 20px;
    border: 4px solid var(--color-navy);
    box-shadow: 12px 12px 0px var(--color-navy);
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8) rotate(-2deg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1) rotate(0deg);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-navy);
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: var(--color-red);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.modal-content p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--color-navy);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--color-navy);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    border-radius: 12px;
}

.success-message {
    text-align: center;
    color: var(--color-teal);
    padding: 2rem 0;
}

.success-message h3 {
    color: var(--color-navy);
    font-size: 2rem;
    margin-bottom: 1rem;
}
