:root {
    --accent: #b87333;
    --accent-light: #cd8b4a;
    --bg: #09090b;
    --bg-subtle: #18181b;
    --text: #fafafa;
    --text-muted: #71717a;
    --border: #27272a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero .container {
    max-width: 1400px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 85vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(9, 9, 11, 0) 0%,
        rgba(9, 9, 11, 0.3) 50%,
        rgba(9, 9, 11, 0.9) 80%,
        rgba(9, 9, 11, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-light);
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-light), #d4a055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.3rem;
    color: var(--accent-light);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.cta-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.4);
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-subtle);
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--border);
    margin-bottom: 20px;
    line-height: 1;
}

.feature-card:hover .feature-number {
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Register */
.register {
    padding: 100px 0;
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.register-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.register-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.perks {
    list-style: none;
}

.perks li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.register-form-box {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
}

.register-form-box form {
    display: flex;
    flex-direction: column;
}

.register-form-box label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.register-form-box input {
    padding: 16px 20px;
    font-size: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    outline: none;
    margin-bottom: 20px;
    transition: border-color 0.2s;
}

.register-form-box input:focus {
    border-color: var(--accent);
}

.register-form-box input::placeholder {
    color: #52525b;
}

.register-form-box button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.register-form-box button:hover {
    background: var(--accent-light);
}

.register-form-box button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-arrow {
    transition: transform 0.2s;
}

.register-form-box button:hover .btn-arrow {
    transform: translateX(4px);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #52525b;
    margin-top: 16px;
}

.success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    font-size: 1.75rem;
    font-weight: 600;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.success p {
    color: var(--text-muted);
}

/* About */
.about {
    padding: 100px 0;
    background: var(--bg);
}

.about-wide {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.about-wide h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 32px;
}

.about-wide p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlight {
    color: var(--accent-light) !important;
    font-style: italic;
    margin-top: 32px !important;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.values-grid-wide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .values-grid-wide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .values-grid-wide {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--accent);
}

.value-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* Gallery - hidden until images are ready */
.gallery {
    display: none;
    padding: 100px 0;
    background: var(--bg-subtle);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Placeholder for missing images */
.gallery-item img[src*="gallery-"] {
    opacity: 0.3;
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

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

footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .register-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: 90vh;
        padding-bottom: 60px;
    }
    
    .hero-image {
        height: 50vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features, .register {
        padding: 80px 0;
    }
    
    .register-form-box {
        padding: 32px 24px;
    }
}
