* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9F6A20;
    --secondary-color: #542A08;
    --accent-color: #D6A4AF;
    --light-bg: #FFF8F0;
    --white: #ffffff;
    --text-dark: #542A08;
    --text-light: #733E0E;
    --border-color: #ECC494;
    --gradient-start: #ECC494;
    --gradient-end: #9F6A20;
    --dark-forest: #542A08;
    --forest-green: #9F6A20;
    --sage: #D6A4AF;
    --mint-cream: #FFF8F0;
    --olive: #733E0E;
    --soft-sage: #ECC494;
    --pale-green: #FFF8F0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem;
    -webkit-tap-highlight-color: transparent;
}

.nav-links a:hover {
    color: var(--gradient-start);
}

.cta-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.primary-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.primary-button.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.hero-image .hero-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(236, 196, 148, 0.4);
}

.hero-image .placeholder-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #ECC494 0%, #D6A4AF 30%, #9F6A20 70%, #542A08 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(236, 196, 148, 0.4);
}

/* Experience Section */
.experience {
    padding: 6rem 2rem;
    background: #FFF8F0;
}

.experience h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* What It's Not Section */
.what-its-not {
    padding: 6rem 2rem;
    background: var(--white);
}

.what-its-not h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.underline {
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 3px;
}

.not-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.not-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.cross {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.not-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #9F6A20 0%, #733E0E 50%, #542A08 100%);
    color: var(--white);
}

.how-it-works h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    grid-column: span 1;
}

.step-connector {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    grid-column: span 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: #9F6A20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Comparison Section */
.comparison {
    padding: 6rem 2rem;
    background: #FFF8F0;
}

.comparison h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.comparison-column {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comparison-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-column ul {
    list-style: none;
}

.comparison-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
}

.comparison-column li:last-child {
    border-bottom: none;
}

.assembled li {
    color: var(--text-light);
}

.assembled li::before {
    content: "−";
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.authored li {
    color: var(--text-dark);
}

.authored li::before {
    content: "✓";
    margin-right: 0.5rem;
    color: #27ae60;
    font-weight: bold;
}

.comparison-divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, #ECC494, #9F6A20, transparent);
    height: 100%;
    min-height: 300px;
}

/* Examples Section */
.examples {
    padding: 6rem 2rem;
    background: var(--white);
}

.examples h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.example-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.example-card:hover {
    transform: translateY(-8px);
}

.example-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #ECC494 0%, #D6A4AF 30%, #9F6A20 70%, #542A08 100%);
}

.example-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.example-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #9F6A20 0%, #542A08 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta > p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #542A08;
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 2rem;
        margin-top: 70px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image .placeholder-image {
        height: 350px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .step {
        padding: 1rem 0.5rem;
    }

    .step h3 {
        font-size: 1.2rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-divider {
        width: 100%;
        height: 2px;
        min-height: auto;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .features-grid,
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .example-card {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .experience h2,
    .how-it-works h2,
    .comparison h2,
    .examples h2 {
        font-size: 2.2rem;
    }

    .what-its-not h2 {
        font-size: 2rem;
    }

    .not-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links a:not(.cta-button) {
        display: none;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 2rem 1rem;
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image .placeholder-image {
        height: 250px;
    }

    .primary-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .primary-button.large {
        padding: 1rem 2.2rem;
        font-size: 1.1rem;
    }

    .experience,
    .what-its-not,
    .how-it-works,
    .comparison,
    .examples,
    .final-cta {
        padding: 4rem 1rem;
    }

    .experience h2,
    .how-it-works h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .what-its-not h2,
    .comparison h2,
    .examples h2 {
        font-size: 1.7rem;
    }

    .final-cta h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .final-cta > p {
        font-size: 1.1rem;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .feature-card,
    .comparison-column {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .not-item {
        padding: 1rem;
    }

    .not-item p {
        font-size: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .comparison-column h3,
    .example-card h3 {
        font-size: 1.3rem;
    }

    .comparison-column li {
        font-size: 0.95rem;
        padding: 0.7rem 0;
    }

    .example-card p {
        font-size: 0.95rem;
    }

    .example-image {
        height: 200px;
    }

    .cta-note {
        font-size: 0.9rem;
    }

    footer {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .experience h2,
    .how-it-works h2,
    .final-cta h2 {
        font-size: 1.5rem;
    }

    .primary-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .feature-card,
    .comparison-column {
        padding: 1.2rem;
    }
}
