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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #24292f;
    background: #f6f0e7;
    font-size: 16px;
    padding: 0;
    overflow-x: hidden;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

.app-icon {
    display: block;
    width: 150px;
    height: 150px;
    margin: 0 auto 0.75em;
    border-radius: 22%;
}

h1 {
    font-size: 3em;
    font-weight: 700;
    /* margin-bottom: 0.3em; */
    text-align: center;
    border: none;
    padding: 0;
}

h2 {
    font-size: 2em;
    font-weight: 600;
    margin: 0;
    border: none;
    padding: 0;
}

h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 0.8em;
}

p {
    margin-bottom: 1em;
    line-height: 1.7;
}

.subtitle {
    font-size: 1.3em;
    color: #57606a;
    margin: 0 0 2em;
    text-align: center;
    font-weight: 400;
}

.coming-soon-container {
    text-align: center;
    margin-bottom: 3em;
}

.coming-soon {
    display: inline-block;
    padding: 12px 32px;
    background: #ffffff;
    border: 1px solid #e8dcc9;
    border-radius: 50px;
    color: #57606a;
    font-size: 0.95em;
    margin: 0;
    font-weight: 500;
}

.intro-section {
    text-align: center;
    margin: 4em 0 5em;
    padding: 0 2em;
}

.intro-section h2 {
    margin-bottom: 0.5em;
}

.lead {
    font-size: 1.15em;
    color: #57606a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.final-section {
    text-align: center;
    margin: 5em 0 3em;
}

.final-cta {
    font-size: 1.8em;
    font-weight: 600;
    margin: 0 0 1.5em;
}

ul {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.4em;
}

hr {
    border: 0;
    border-top: 1px solid #d0d7de;
    margin: 3em 0;
}

blockquote {
    border-left: 4px solid #d0d7de;
    padding-left: 1em;
    margin: 1em 0;
    color: #57606a;
    font-style: italic;
}

strong {
    font-weight: 600;
}

em {
    color: #57606a;
}

/* Features Grid */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5em;
    margin: 5em 0;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e8dcc9;
    border-radius: 12px;
    padding: 2em;
    transition: all 0.2s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feature-card h3 {
    color: #24292f;
    margin-bottom: 0.8em;
    font-size: 1.2em;
}

.feature-card p {
    color: #57606a;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95em;
}

.screenshot-placeholder {
    background: #f6f8fa;
    border: 2px dashed #d0d7de;
    border-radius: 8px;
    padding: 60px 20px;
    text-align: center;
    color: #57606a;
    margin: 2em 0;
    font-size: 0.95em;
}

/* Carousel Styles */
.carousel {
    position: relative;
    max-width: 100%;
    margin: 0 0 5em;
    padding: 0 80px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
}

.carousel-track {
    display: flex;
    gap: 40px;
    transition: transform 0.4s ease-in-out;
    align-items: center;
}

.carousel-item {
    flex: 0 0 280px;
    transition: all 0.4s ease;
    opacity: 0.35;
    transform: scale(0.85);
}

.carousel-item.center {
    opacity: 1;
    transform: scale(1.25);
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid #e8dcc9;
}

.carousel-caption-container {
    text-align: center;
    margin-top: 2.5em;
    min-height: 60px;
}

.carousel-caption {
    color: #24292f;
    font-size: 1.05em;
    margin: 0;
    transition: opacity 0.3s ease;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #d0d7de;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #24292f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn-prev {
    left: -60px;
}

.carousel-btn-next {
    right: -60px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2em;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d4b896;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.carousel-indicator:hover {
    background: #b89968;
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: #9f7e4b;
    width: 32px;
    border-radius: 5px;
}

footer {
    text-align: center;
    margin-top: 6em;
    padding-top: 3em;
    border-top: 1px solid #d0d7de;
    color: #57606a;
    font-size: 0.9em;
}

footer p {
    margin-bottom: 0.3em;
}

footer a {
    color: #9f7e4b;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #b89968;
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    main {
        padding: 40px 20px 60px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.1em;
    }

    .intro-section {
        padding: 0 1em;
        margin: 3em 0 4em;
    }

    .lead {
        font-size: 1.05em;
    }

    .carousel {
        padding: 0 50px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .carousel-item {
        flex: 0 0 220px;
    }

    .carousel-track {
        gap: 15px;
    }

    .features-section {
        grid-template-columns: 1fr;
        gap: 1.5em;
        margin: 3em 0;
    }

    .feature-card {
        padding: 1.5em;
    }
}

/* Privacy Policy Styles */
.policy-header {
    text-align: center;
    margin-bottom: 3em;
    padding: 0 1em;
}

.policy-header h1 {
    margin-bottom: 0.5em;
}

.last-updated {
    font-size: 0.9em;
    color: #57606a;
    font-style: italic;
    margin-top: 0.5em;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 2.5em;
}

.policy-section h2 {
    margin-bottom: 0.75em;
    padding-bottom: 0.4em;
    border-bottom: 1px solid #e8dcc9;
}

.policy-section h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.policy-section ul {
    margin: 1em 0 1em 1.5em;
    line-height: 1.25;
}

.policy-section li {
    margin-bottom: 0.5em;
}

.policy-section strong {
    font-weight: 600;
    color: #24292f;
}

.policy-section a {
    color: #9f7e4b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-section a:hover {
    color: #b89968;
    text-decoration: underline;
}

footer a {
    color: #9f7e4b;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #b89968;
    text-decoration: underline;
}