:root {
    --primary: #f59e0b;
    --primary-hover: #d97706;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-card: rgba(255, 255, 255, 0.1);
    --text-main: #f3f4f6;
    --text-dim: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .brand {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Beta Banner */
.beta-banner {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #000;
    text-align: center;
    padding: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-card);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    width: 100%;
}

.brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 10% 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,1) 30%, rgba(10,10,10,0.4) 100%), 
                url('../img/hero-chicken.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-right: auto;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content h1 span {
    display: block;
    color: var(--primary);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Form Glassmorphism */
.request-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-card);
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.request-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-card);
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.consent-group input[type="checkbox"] {
    margin-top: 5px;
    accent-color: var(--primary);
}

.consent-group label {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.btn-submit:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
    transform: none !important;
}

.btn-submit:not(:disabled):hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}

/* Features */
.features {
    padding: 100px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    background: #000;
}

.feat-card {
    padding: 40px;
    border-radius: 25px;
    background: #0a0a0a;
    border: 1px solid var(--border-card);
    transition: transform 0.3s;
}

.feat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feat-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feat-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Content Page (Privacy/Terms) */
.content-section {
    padding: 160px 10% 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.content-section h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.content-section h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #fff;
}

.content-section p, .content-section li {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

/* Footer */
footer {
    padding: 60px 10% 40px;
    border-top: 1px solid var(--border-card);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.copy {
    color: #444;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 15px 5%;
    }
    .brand { font-size: 1.5rem; }
    .hero {
        flex-direction: column;
        min-height: auto;
        padding-top: 160px;
        padding-bottom: 80px;
    }
    .hero-bg {
        background: linear-gradient(to bottom, rgba(10,10,10,1) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,1) 100%), 
                    url('../img/hero-chicken.png');
    }
    .hero-content {
        text-align: center;
        margin: 0 auto 50px;
    }
    .hero-content h1 { font-size: 3rem; }
    .nav-links { display: none; }
}
