:root {
    --bg-dark: #020617;
    --accent: #00f2ff;
    --accent-glow: rgba(0, 242, 255, 0.3);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero_bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
    filter: brightness(0.7);
}

.glass-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
}

header {
    text-align: center;
    margin-bottom: 80px;
}

header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, #00f2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.2));
}

header p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dim);
    font-weight: 300;
}

.legal-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.grid-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.land-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.land-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.land-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
    background: rgba(255,255,255,0.05);
}

.land-card:hover::after {
    opacity: 0.3;
}

.land-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.land-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.land-card p {
    color: var(--text-dim);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.btn-start {
    margin-top: auto;
    padding: 18px 40px;
    background: var(--accent);
    color: #000;
    border-radius: 20px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-start:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 0 30px white;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 100px;
}

.info-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    text-align: left;
}

.info-card i {
    display: block;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-dim);
    line-height: 1.5;
}

.back-link {
    position: fixed;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    z-index: 100;
}

.back-link:hover {
    background: var(--accent);
    color: black;
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .grid-options { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: 1fr; }
    header h1 { font-size: 3rem; }
}

/* Base Styles for inner pages (cards, forms) */
.card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn.primary { background: var(--accent); color: black; }
.btn.accent { background: white; color: black; }
.btn.secondary { background: rgba(255,255,255,0.1); color: white; }

.status-msg { margin-top: 15px; font-weight: 600; }
.success { color: #4ade80; }
.error { color: #f87171; }
.warning { color: #fbbf24; }

textarea, .drop-zone {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 2px dashed var(--glass-border);
    border-radius: 20px;
    color: white;
    padding: 20px;
    margin: 20px 0;
}

.drop-zone--over { border-color: var(--accent); background: rgba(0, 242, 255, 0.05); }
