:root {
    --bg: #0a1208;
    --bg-card: rgba(14, 24, 12, 0.92);
    --text: #e8f5e4;
    --muted: #7a9a72;
    --accent: #6bdc4a;
    --accent2: #a8f070;
    --border: rgba(107, 220, 74, 0.22);
    --soon: #c4a035;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'DM Sans', system-ui, sans-serif;
    background:
        radial-gradient(ellipse at 20% -5%, rgba(60, 120, 40, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 10%, rgba(40, 90, 30, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, #0d180a 0%, var(--bg) 65%);
    color: var(--text);
    line-height: 1.6;
}

a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

.lf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: rgba(10, 18, 8, 0.88);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.lf-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}

.lf-logo:hover { text-decoration: none; opacity: 0.9; }

.lf-logo__dot { color: var(--accent); }

.lf-header nav a {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.lf-header nav a:hover { color: var(--accent2); text-decoration: none; }

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

.lf-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.lf-hero__eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.75rem;
}

.lf-hero h1,
.lf-hero__brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 6vw, 3.5rem);
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.1;
}

.lf-hero__lead {
    max-width: 36rem;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.1rem;
}

.lf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.lf-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}

.lf-card:hover {
    border-color: rgba(107, 220, 74, 0.45);
    transform: translateY(-2px);
}

.lf-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0d180a;
}

.lf-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.lf-card:hover .lf-card__media img {
    transform: scale(1.04);
}

.lf-card__media--static {
    cursor: default;
}

.lf-card__body {
    padding: 1.25rem 1.35rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lf-card--soon { opacity: 0.9; }

.lf-card__badge {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    background: rgba(107, 220, 74, 0.18);
    color: var(--accent2);
    margin-bottom: 0.75rem;
}

.lf-card__badge--live {
    background: rgba(107, 220, 74, 0.12);
    color: var(--accent);
}

.lf-card__badge--soon {
    background: rgba(196, 160, 53, 0.15);
    color: var(--soon);
}

.lf-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    margin: 0 0 0.5rem;
}

.lf-card p {
    color: var(--muted);
    margin: 0 0 1.25rem;
    flex: 1;
    font-size: 0.95rem;
}

.lf-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.lf-cta {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    background: var(--accent);
    color: #0a1208;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
    border: 1px solid transparent;
}

.lf-cta:hover {
    background: var(--accent2);
    text-decoration: none;
    transform: scale(1.02);
}

.lf-cta--ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--accent2);
}

.lf-cta--ghost:hover {
    background: rgba(107, 220, 74, 0.1);
    border-color: rgba(107, 220, 74, 0.45);
    color: var(--accent2);
    transform: none;
}

.lf-cta--disabled {
    background: rgba(122, 154, 114, 0.25);
    color: var(--muted);
    cursor: not-allowed;
    pointer-events: none;
}

.lf-studio {
    margin-top: 3rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

.lf-footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

.lf-footer p { margin: 0; }

.lf-legal {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

.lf-legal h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin: 0 0 0.75rem;
}

.lf-legal__lead {
    color: var(--muted);
    margin: 0 0 2rem;
}

.lf-legal h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: var(--accent2);
    margin: 2rem 0 0.6rem;
}

.lf-legal p, .lf-legal li {
    color: var(--text);
    font-size: 0.98rem;
}

.lf-legal ul {
    padding-left: 1.2rem;
    color: var(--muted);
}

.lf-legal code {
    font-size: 0.9em;
    color: var(--accent2);
}

@media (max-width: 480px) {
    .lf-header { padding: 0.75rem 1rem; }
    main { padding: 1.75rem 1rem 3rem; }
    .lf-legal { padding: 1.75rem 1rem 3rem; }
}
