/* =============================================
   TARMOQ — Full-Screen Single Page
   Dark + Neon Green
============================================= */

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

[hidden] { display: none !important; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: rgba(0, 255, 136, 0.3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 255, 136, 0.6); }
* { scrollbar-width: thin; scrollbar-color: rgba(0, 255, 136, 0.3) transparent; }

:root {
    --g: #00ff88;
    --g2: rgba(0,255,136,0.12);
    --g3: rgba(0,255,136,0.25);
    --g4: rgba(0,255,136,0.06);
    --bg: #050c07;
    --card: rgba(255,255,255,0.035);
    --border: rgba(255,255,255,0.07);
    --text: #e6f0e8;
    --muted: rgba(230,240,232,0.5);
    --f1: 'Inter', sans-serif;
    --f2: 'Space Grotesk', sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: var(--f1);
    background: var(--bg);
    color: var(--text);
}

/* Canvas */
#canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Page wrapper — full screen, no scroll */
.page {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ---- Top Bar ---- */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 12, 7, 0.6);
    backdrop-filter: blur(16px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f2);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text);
}
.brand em { color: var(--g); font-style: normal; font-weight: 400; }
.brand-dot {
    width: 8px; height: 8px;
    background: var(--g);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--g);
    animation: blink 2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid var(--g3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--g);
    background: var(--g4);
    letter-spacing: 0.4px;
}

/* ---- Main ---- */
.main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 0;
}

/* ---- Left ---- */
.left {
    padding: 48px 48px 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Glow behind text */
.left::before {
    content: '';
    position: absolute;
    top: 30%; left: -100px;
    width: 500px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,255,136,0.07) 0%, transparent 70%);
    pointer-events: none;
}



h1 {
    font-family: var(--f2);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text);
}
h1 span {
    background: linear-gradient(120deg, var(--g) 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0,255,136,0.3));
}

.lead {
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 14px;
    font-weight: 300;
}
.lead strong { color: var(--text); font-weight: 600; }

.sub {
    font-size: clamp(13px, 1.2vw, 15px);
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 440px;
    font-weight: 300;
}

.tagline {
    font-family: var(--f2);
    font-size: clamp(15px, 1.8vw, 22px);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.4px;
    margin-bottom: 36px;
}
.tagline span { color: var(--g); }

/* Stats */
.stats {
    display: flex;
    align-items: center;
    gap: 28px;
}
.stat-val {
    font-family: var(--f2);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--g);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-lbl {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.3px;
    font-weight: 400;
}
.divider-v {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ---- Right ---- */
.right {
    padding: 32px 48px 32px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 36px 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}
/* top green line */
.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--g), #00d4ff, transparent);
}

.form-header { margin-bottom: 28px; }
.form-header h2 {
    font-family: var(--f2);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}
.form-header p { font-size: 13px; color: var(--muted); }

/* Fields */
form { display: flex; flex-direction: column; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.3px;
}
.field input,
.field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text);
    font-family: var(--f1);
    font-size: 14px;
    outline: none;
    transition: all 0.22s;
    resize: none;
    width: 100%;
}
.field input:focus,
.field textarea:focus {
    border-color: var(--g3);
    background: rgba(0,255,136,0.04);
    box-shadow: 0 0 0 3px rgba(0,255,136,0.07);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(230,240,232,0.2); }

/* Submit button */
button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: var(--g);
    color: #000;
    font-family: var(--f1);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.22s;
    letter-spacing: 0.2px;
    margin-top: 4px;
}
button[type="submit"]:hover {
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,255,136,0.35);
    transform: translateY(-1px);
}
button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}





/* ---- Globe decoration ---- */
.globe-decor {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    max-width: 800px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    filter: saturate(1.5) brightness(0.8);
}
.globe-decor img {
    width: 100%;
    display: block;
    border-radius: 16px;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 70%);
    mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 70%);
}



/* ---- Responsive ---- */
@media (max-width: 820px) {
    html, body { overflow-y: auto; }
    .page { height: auto; overflow: visible; }
    .main { grid-template-columns: 1fr; }
    .left { padding: 36px 24px 28px; }
    .right { padding: 0 24px 40px; border-left: none; border-top: 1px solid var(--border); }
    .topbar { padding: 16px 24px; }
    .form-card { max-width: 100%; }
    .globe-decor { display: none; }
}
