:root {
    --pepper: #006A4E;
    --tomato: #D1202F;
    --corn: #FFB81C;
    --oregano: #636F49;
    --sky: #87c5e8;
    --sky-soft: #b9ddf0;
    --cream: #f5f1e8;
    --white: #ffffff;
    --text-dark: #263528;
    --text-muted: #5a6b5a;

    --font-display: 'Fraunces', serif;
    --font-body: 'Mulish', sans-serif;

    --shadow-soft: 0 20px 60px rgba(0, 106, 78, 0.18);
    --shadow-strong: 0 30px 80px rgba(0, 106, 78, 0.25);
}


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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    min-height: 100vh;
}

.scene {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem 4rem;
    overflow: hidden;
}

.sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--sky) 0%, var(--sky-soft) 42%, #f8f5ed 100%);
    z-index: 0;
}

.sun {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff3c4 0%, #f6d59b 55%, rgba(246, 213, 155, 0) 70%);
    top: 8%;
    right: 12%;
    opacity: 0.85;
    animation: drift 16s ease-in-out infinite;
    z-index: 1;
}

.grain {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(38, 53, 40, 0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(38, 53, 40, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.field {
    position: absolute;
    left: -10%;
    right: -10%;
    border-radius: 50% 50% 0 0;
    z-index: 2;
}

.field-back {
    height: 24vh;
    bottom: 28vh;
    background: linear-gradient(100deg, var(--oregano), var(--pepper));
    transform: rotate(-1.5deg);
}

.field-mid {
    height: 26vh;
    bottom: 16vh;
    background: linear-gradient(110deg, var(--pepper), var(--oregano));
    transform: rotate(1.5deg);
}

.field-front {
    height: 30vh;
    bottom: 0;
    background: linear-gradient(100deg, var(--pepper), var(--oregano));
    box-shadow: inset 0 40px 60px rgba(0, 106, 78, 0.2);
}

.card {
    position: relative;
    z-index: 3;
    max-width: 860px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    border: 1px solid rgba(0, 106, 78, 0.12);
    padding: clamp(2rem, 4vw, 3.5rem);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(8px);
    display: grid;
    gap: 2.5rem;
    text-align: left;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    width: 160px;
    max-width: 40vw;
    border-radius: 20px;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-soft);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    gap: 0.05em;
}

.brand-name span {
    display: inline-block;
}

.brand-name .pepper { color: var(--pepper); }
.brand-name .tomato { color: var(--tomato); }
.brand-name .corn { color: var(--corn); }
.brand-name .oregano { color: var(--oregano); }

.brand-tag {
    font-size: 1rem;
    color: var(--text-muted);
}

.eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--oregano);
}

.title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    color: var(--pepper);
    margin-top: 0.5rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pill {
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    background: rgba(99, 111, 73, 0.15);
    color: var(--pepper);
    font-weight: 600;
}

.timeline {
    display: grid;
    gap: 1.2rem;
}

.step {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 1rem;
    align-items: start;
}

.step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, var(--tomato), var(--corn));
    box-shadow: 0 0 12px rgba(209, 32, 47, 0.45);
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--pepper);
}

.step p {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.footer {
    display: grid;
    gap: 1rem;
}

.footnote {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
}

.reveal.is-visible {
    animation: rise 0.9s ease forwards;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-18px, 10px);
    }
}

@media (max-width: 900px) {
    .card {
        text-align: center;
    }

    .brand {
        flex-direction: column;
    }

}

@media (max-width: 600px) {
    .scene {
        padding: 2rem 1.2rem 3rem;
    }

    .field-back {
        bottom: 30vh;
    }

    .field-mid {
        bottom: 18vh;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .lead {
        font-size: 1.05rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
