 *  :root {
      --bg: #f6f4ef;
      --text-primary: #2f3a33;
      --text-secondary: #5f6f64;
      --accent: #a23a2e;
      --accent-soft: #c2a14d;
      --border: #d8d5cc;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #f5f5f0;
            color: #2d3a2e;
      line-height: 1.6;
    }

    /* Layout */
    .container {
      max-width: 720px;
      margin: 0 auto;
      padding: 80px 24px 120px;
      text-align: center;
    }

    /* Logo */
    logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #ff0000 0%, #4a7c59 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }


    /* Eyebrow */
    .eyebrow {
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 24px;
    }

    /* Headline */
    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 3.6rem);
      font-weight: 500;
      line-height: 1.15;
      margin-bottom: 28px;
    }

    /* Subheadline */
    .subhead {
      font-size: 1.05rem;
      color: var(--text-secondary);
      max-width: 560px;
      margin: 0 auto 56px;
    }

    /* Quote Section */
    .quote {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 500;
      line-height: 1.25;
      margin: 80px 0 24px;
    }

    .quote span {
      display: block;
    }

    .quote-caption {
      font-size: 0.95rem;
      color: var(--text-secondary);
      max-width: 520px;
      margin: 0 auto 80px;
    }

    /* Email CTA */
.cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
 
/* Targets both name and email inputs */
input[type="text"],
input[type="email"] {
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    min-width: 200px;
    outline: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    color: #2d3a2e;
}
 
input[type="text"]:focus,
input[type="email"]:focus {
    border-color: #a23a2e;
}
 
input::placeholder {
    color: #9aa39b;
}
 
button {
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(135deg, #b03a2e, #7d2d22);
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Inter', sans-serif;
}
 
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(162, 58, 46, 0.25);
}
 
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
 
/* Footer spacing */
.footer-space {
    height: 60px;
}
 
/* Film grain overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.04;
    z-index: 1;
}
 
/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 2rem;
}
 
.feature-card {
    background: #ffffff;
    border: 1px solid #b8c9bc;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}
 
.feature-card:hover {
    background: #f5f8f5;
    border-color: #4a7c59;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.15);
}
 
.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(74, 124, 89, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}
 
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a7c59;
}
 
.feature-card p {
    color: #6b8e7a;
    line-height: 1.6;
}
 
/* Demo Section */
.demo-section {
    padding: 4rem 2rem;
    background: #e8ede9;
}
 
.demo-container {
    max-width: 1400px;
    margin: 0 auto;
}
 
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff0000 0%, #4a7c59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
 
.demo-preview {
    background: #ffffff;
    border: 1px solid #b8c9bc;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}
 
.discussion-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
 
.discussion-item {
    background: #f5f8f5;
    border: 1px solid #b8c9bc;
    border-radius: 15px;
    padding: 1.5rem;
}
 
.discussion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
 
.movie-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #4a7c59;
}
 
.attend-badge {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
 
.attend-button {
    background: linear-gradient(135deg, #ff0000 0%, #4a7c59 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}
 
.attend-button:hover {
    transform: scale(1.05);
}
 
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
 
.community-card {
    background: #ffffff;
    border: 1px solid #b8c9bc;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
 
.community-card:hover {
    background: #f5f8f5;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.15);
}
 
.community-card h4 {
    color: #2d3a2e;
    margin-bottom: 0.5rem;
}
 
.community-members {
    color: #4a7c59;
    font-size: 0.9rem;
}
 
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
 
    .features {
        grid-template-columns: 1fr;
    }
 
    .cta {
        flex-direction: column;
        align-items: center;
    }
 
    input[type="text"],
    input[type="email"] {
        min-width: 260px;
        width: 100%;
        max-width: 320px;
    }
}
 