/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #EA580C;
    --pink: #EC4899;
    --cream: #FFFBEB;
    --dark: #1F2937;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.2;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 251, 235, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(234, 88, 12, 0.1);
    padding: 20px 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--orange);
}

.logo-icon {
    font-size: 28px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--orange);
}

.cta-button {
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
}

/* Hero */
.hero {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-title {
    font-size: 72px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.4);
}

/* Features */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 64px;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    background: var(--cream);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(234, 88, 12, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, var(--cream) 100%);
}

.demo-intro {
    text-align: center;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 48px;
}

.vision-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.goal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: grab;
}

.goal-card:active {
    cursor: grabbing;
}

.goal-card.dragging {
    opacity: 0.5;
    transform: rotate(3deg);
}

.goal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.goal-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.goal-emoji {
    font-size: 64px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.goal-content {
    padding: 24px;
}

.goal-title {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}

.goal-timeline {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.goal-progress {
    margin-bottom: 16px;
}

.progress-bar {
    height: 8px;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange) 0%, var(--pink) 100%);
    border-radius: 8px;
    transition: width 0.6s ease;
}

.progress-text {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.goal-affirmation {
    font-style: italic;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    border-left: 3px solid var(--pink);
    padding-left: 12px;
    margin-top: 16px;
}

/* Waitlist */
.waitlist {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.waitlist-content {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

.waitlist-form {
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--orange);
}

.submit-button {
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
}

.form-note {
    font-size: 14px;
    color: var(--gray);
}

.success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 16px;
    margin-top: 24px;
}

.success-message.show {
    display: flex;
}

.success-icon {
    font-size: 32px;
}

.success-message p {
    font-weight: 600;
    color: var(--dark);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--dark);
    color: white;
    text-align: center;
}

.footer-text {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-text a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-text a:hover {
    color: var(--pink);
}

.footer-copyright {
    font-size: 14px;
    color: var(--gray);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        gap: 16px;
    }

    .nav a:not(.cta-button) {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .vision-board {
        grid-template-columns: 1fr;
    }

    .form-group {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .logo-text {
        font-size: 20px;
    }

    .container {
        padding: 0 16px;
    }
}
