:root { --bg-dark: #020408; --primary-neon: #c2fbd7; --glass-border: rgba(255, 255, 255, 0.15); --glass-bg: rgba(255, 255, 255, 0.04); --text-main: #ffffff; --text-muted: #d1d5db; --font-heading: 'Space Grotesk', sans-serif; --font-body: 'Inter', sans-serif; }
* { box-sizing: border-box; margin: 0; padding: 0; cursor: default; }
a, button, input, select, textarea, .price-btn, .clickable, .hamburger { cursor: pointer; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; opacity: 1; }
body.loading { overflow: hidden; height: 100vh; }
::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #020408; } ::-webkit-scrollbar-thumb { background: var(--primary-neon); border-radius: 10px; box-shadow: 0 0 15px var(--primary-neon); }
#progress-bar { position: fixed; top: 0; left: 0; height: 4px; background: var(--primary-neon); width: 0%; z-index: 10001; transition: width 0.1s; box-shadow: 0 0 15px var(--primary-neon); }
.aurora-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: #020408; overflow: hidden; }
.aurora-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; animation: float 10s infinite alternate ease-in-out; }
.blob-1 { top: -10%; left: -10%; width: 60vw; height: 60vw; background: #0f3d3e; } .blob-2 { bottom: -10%; right: -10%; width: 50vw; height: 50vw; background: #1a2c38; } .blob-3 { top: 40%; left: 40%; width: 40vw; height: 40vw; background: rgba(194, 251, 215, 0.08); }
@keyframes float { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, 50px) scale(1.1); } }
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000000; z-index: 10000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: opacity 1.0s ease-in-out, visibility 1.0s ease-in-out; }
.loader-content img { width: 220px; opacity: 0; transform: scale(0.8); filter: drop-shadow(0 0 0 rgba(194, 251, 215, 0)); animation: logoReveal 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.elite-text { margin-top: 2.5rem; font-family: var(--font-heading); font-size: 1.4rem; color: #fff; letter-spacing: 6px; text-transform: uppercase; opacity: 0; transform: translateY(20px); animation: textReveal 2s ease-out forwards; animation-delay: 1.5s; text-align: center; }
.elite-text span { color: var(--primary-neon); font-weight: 700; }
@keyframes logoReveal { 0% { opacity: 0; transform: scale(0.8); filter: blur(10px); } 100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 40px rgba(194, 251, 215, 0.5)); } }
@keyframes textReveal { 0% { opacity: 0; transform: translateY(20px); filter: blur(5px); } 100% { opacity: 0.9; transform: translateY(0); filter: blur(0); } }

/* NAV */
nav { display: flex; justify-content: space-between; align-items: center; padding: 0 5%; position: fixed; width: 100%; top: 0; z-index: 2000; background: rgba(2, 4, 8, 0.9); backdrop-filter: blur(25px); border-bottom: 1px solid var(--glass-border); height: 100px; }
.logo { position: absolute; left: 50%; transform: translateX(-50%); }
.logo img { max-height: 65px; width: auto; display: block; transition: 0.3s; }
.hamburger { width: 40px; height: 30px; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; z-index: 2002; }
.hamburger span { display: block; width: 100%; height: 3px; background: #fff; border-radius: 5px; transition: 0.4s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); background: var(--primary-neon); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); background: var(--primary-neon); }
.nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #020408; display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 2001; opacity: 0; visibility: hidden; transition: 0.5s ease-in-out; }
.nav-menu.open { opacity: 1; visibility: visible; }
.nav-menu ul { list-style: none; text-align: center; }
.nav-menu ul li { margin: 2rem 0; overflow: hidden; }
.nav-menu ul li a { font-family: var(--font-heading); font-size: 3.5rem; color: #fff; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; transform: translateY(100%); opacity: 0; transition: transform 0.5s, opacity 0.5s, color 0.3s; }
.nav-menu.open ul li a { transform: translateY(0); opacity: 1; }
.nav-menu ul li a:hover { color: var(--primary-neon); text-shadow: 0 0 20px var(--primary-neon); }

/* LAYOUT */
.hero { min-height: 90vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding-top: 150px; z-index: 2; }
.section { padding: 10rem 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 3rem; }
.domain-header { text-align: center; padding: 10rem 0 6rem; border-bottom: 1px solid var(--glass-border); }

/* TEXT */
h1 { font-size: 5.5rem; letter-spacing: -3px; font-weight: 700; text-shadow: 0 0 50px rgba(194, 251, 215, 0.15); margin-bottom: 1.5rem; color: #fff; line-height: 1.1; }
h2 { font-size: 3.5rem; margin-bottom: 3.5rem; text-align: center; letter-spacing: -1px; color: #fff; font-family: var(--font-heading); }
h3 { font-size: 2rem; color: #fff; font-family: var(--font-heading); }
p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.text-gradient { background: linear-gradient(135deg, #fff 30%, var(--primary-neon) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tld-badge { display: inline-block; padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 800; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; letter-spacing: 1px; }
.fade-in { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.visible { opacity: 1; transform: translateY(0); }

/* COMPONENTS */
.button-33 { background-color: var(--primary-neon); border-radius: 50px; box-shadow: 0 0 20px rgba(194, 251, 215, 0.25); color: #064e3b; display: inline-block; font-family: var(--font-heading); padding: 16px 45px; text-align: center; text-decoration: none; transition: all 300ms; border: 0; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.5px; }
.button-33:hover { box-shadow: 0 0 40px rgba(194, 251, 215, 0.6); transform: translateY(-4px); }
.magnetic-btn { display: inline-block; transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.2); color: #fff; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; transition: 0.3s; }
.btn-outline:hover { border-color: var(--primary-neon); color: var(--primary-neon); box-shadow: 0 0 20px rgba(194, 251, 215, 0.2); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 3rem; padding: 2rem 0; }
.glass-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 30px; padding: 3.5rem; position: relative; backdrop-filter: blur(30px); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); transition: 0.4s ease; overflow: hidden; }
.glass-card:hover { transform: translateY(-12px); border-color: rgba(194, 251, 215, 0.5); box-shadow: 0 0 60px rgba(194, 251, 215, 0.1); }
.glass-card::before { content: ""; position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.08), transparent 40%); opacity: 0; transition: opacity 0.5s; pointer-events: none; z-index: 1; }
.glass-card:hover::before { opacity: 1; }
.glass-card * { position: relative; z-index: 2; }

/* FORMS */
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.8rem; color: var(--primary-neon); font-size: 1rem; font-weight: 600; }
.form-group input, textarea, select { width: 100%; padding: 1.2rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); color: white; border-radius: 15px; font-size: 1.1rem; font-family: inherit; }
.form-group input:focus { border-color: var(--primary-neon); outline: none; box-shadow: 0 0 20px rgba(194, 251, 215, 0.1); }
select { appearance: none; background-image: url('data:image/svg+xml;utf8,<svg fill="%23c2fbd7" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); background-repeat: no-repeat; background-position: right 15px center; background-color: #020408; }
select option { background-color: #020408 !important; color: #fff; padding: 10px; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); backdrop-filter: blur(20px); z-index: 3000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.modal-overlay.open { display: flex; opacity: 1; }
.modal-content { background: #0a0f18; border: 1px solid var(--primary-neon); padding: 4rem; border-radius: 30px; width: 100%; max-width: 600px; position: relative; box-shadow: 0 0 80px rgba(194, 251, 215, 0.1); }
.close-modal { position: absolute; top: 20px; right: 30px; font-size: 2rem; color: #fff; cursor: pointer; }

/* --- FOOTER (SINGLE LINE FIX) --- */
.site-footer { margin-top: auto; border-top: 1px solid var(--glass-border); background: #020408; padding: 4rem 0 2rem; }
.footer-label { text-align: center; font-size: 0.85rem; letter-spacing: 3px; color: #666; margin-bottom: 3rem; text-transform: uppercase; }
.trust-badges { 
    display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; 
    gap: 2rem; max-width: 1200px; margin: 0 auto 4rem; padding: 0 20px;
}
.trust-logo { height: 30px; width: auto; object-fit: contain; filter: grayscale(100%) opacity(0.5); transition: 0.4s; }
.trust-logo:hover { filter: grayscale(0%) opacity(1); transform: scale(1.1); }
.footer-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.05); margin: 0 auto 2rem; width: 100%; max-width: 1400px; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.footer-email { color: #ccc; text-decoration: none; font-size: 1rem; transition: 0.3s; display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); }
.footer-email:hover { color: var(--primary-neon); }
.social-icons { display: flex; gap: 1.5rem; }
.social-icon-svg { width: 24px; height: 24px; fill: #888; transition: 0.3s; }
.social-icon-svg:hover { fill: var(--primary-neon); transform: translateY(-3px); }
.copyright { text-align: center; color: #444; font-size: 0.8rem; margin-top: 3rem; }

/* EXTRA */
#context-menu { position: fixed; z-index: 10002; width: 200px; background: #0a0f18; border: 1px solid var(--glass-border); border-radius: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.5); display: none; padding: 10px 0; backdrop-filter: blur(10px); }
#context-menu .item { padding: 8px 15px; font-size: 0.85rem; color: #ccc; border-left: 2px solid transparent; transition: 0.2s; }
#context-menu .item:hover { background: rgba(255,255,255,0.05); color: #fff; border-left-color: var(--primary-neon); }
#context-menu hr { border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin: 5px 0; }
.domain-title { font-size: 2rem; margin-bottom: 0.5rem; font-weight: 700; color: #fff; }
.price-tag { font-size: 2.2rem; color: #fff; font-weight: 800; display: block; margin-bottom: 5px; }
.price-tag.crypto-mode { color: var(--primary-neon); font-family: monospace; letter-spacing: -1px; }
.crypto-switch { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 5px 15px; border-radius: 20px; font-size: 0.75rem; color: #ccc; cursor: pointer; transition: 0.3s; }
.crypto-switch.active { background: rgba(194, 251, 215, 0.15); color: var(--primary-neon); border-color: var(--primary-neon); }
#toast { visibility: hidden; min-width: 250px; background-color: var(--primary-neon); color: #004d26; text-align: center; border-radius: 50px; padding: 12px; position: fixed; z-index: 9999; left: 50%; bottom: 30px; transform: translateX(-50%); font-weight: bold; opacity: 0; transition: opacity 0.3s; }
#toast.show { visibility: visible; opacity: 1; }
.form-box { max-width: 600px; margin: 0 auto; background: rgba(255,255,255,0.02); padding: 3rem; border-radius: 20px; border: 1px solid var(--glass-border); backdrop-filter: blur(20px); }
.article-content { max-width: 800px; margin: 0 auto; font-size: 1.1rem; color: #ccc; }
.article-content h2 { color: var(--primary-neon); margin-top: 3rem; font-size: 2rem; }
.highlight-box { background: rgba(194, 251, 215, 0.05); border-left: 4px solid var(--primary-neon); padding: 2rem; margin: 2rem 0; }
.team-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 1.5rem; border: 3px solid var(--primary-neon); }
.team-role { color: var(--primary-neon); font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 0.5rem; display: block; }
.location-box { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 5rem; margin-top: 5rem; }

@media (max-width: 992px) {
    .trust-badges { flex-wrap: wrap; justify-content: center; gap: 3rem; }
    .trust-logo { height: 35px; }
    .footer-bottom-row { flex-direction: column-reverse; gap: 2rem; }
}
@media (max-width: 768px) {
    h1 { font-size: 3.5rem; } h2 { font-size: 2.5rem; }
    .card-grid { grid-template-columns: 1fr; } .glass-card { padding: 2.5rem; }
}