:root {
    --bg-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --accent-bg: #f5f5f5; /* Very light gray for backgrounds */
    --accent-highlight: #e0e0e0; /* Slightly darker for borders */
    --primary-color: #1a1a1a; /* Black for buttons/brand */
    --max-width: 1000px;
    --radius: 24px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
}

p {
    margin: 0 0 1rem 0;
    color: var(--text-secondary);
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Band */
.topband {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Header & Nav */
header {
    padding-bottom: 60px;
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: inline-block;
    background: var(--accent-bg);
    padding: 6px 12px;
    border-radius: 100px;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 450px;
}

.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    max-height: 600px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* CTA Buttons */
.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-button img {
    height: 48px;
    transition: transform 0.2s ease;
}

.store-button:hover img {
    transform: translateY(-2px);
}

.coming-soon-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: default;
}

.coming-soon-badge {
    height: 48px;
    opacity: 0.6;
    filter: grayscale(50%);
    pointer-events: none;
}

.coming-soon-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--accent-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-lead {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

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

.card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: transform 0.2s ease;
}

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

.card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.card h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: var(--accent-bg);
}

/* Note Section */
.note-section {
    padding-bottom: 80px;
}

.note-card {
    background: var(--accent-bg);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: var(--accent-bg);
}

.support-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    text-align: center;
}

.support-content h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.support-content p {
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.support-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    border-top: 1px solid var(--accent-highlight);
    padding: 40px 0;
    margin-top: auto;
}

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

.footer-brand {
    font-weight: 600;
}

.copyright {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--text-secondary);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-content {
        order: 1; /* Content first on mobile? Or image? Usually image first looks nice if small, but let's stick to content first for storytelling */
    }
    
    .hero-image {
        order: 2;
    }

    .cta-row {
        justify-content: center;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Allow stacking */
        gap: 16px;
    }

    .desktop-cta {
        display: none;
    }
}
