:root {
    --bg-color: #050a1f;
    --text-color: #e0e6ed;
    --card-bg: rgba(17, 24, 39, 0.7);
    --border-color: rgba(59, 130, 246, 0.3);
    --primary-color: #0ea5e9;
    --primary-hover: #2563eb;
    --accent-color: #8b5cf6;
    --btn-text: #ffffff;
    --footer-text: #9ca3af;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 500px),
                      radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.15), transparent 500px);
    color: var(--text-color);
    margin: 0; padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 20px; }

/* Modern Logo & Header */
.header-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px; padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap; gap: 15px;
}

.logo-container {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
}

.logo-icon {
    width: 45px; height: 45px;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.5));
    transition: transform 0.3s;
}
.logo-container:hover .logo-icon { transform: rotate(-10deg) scale(1.1); }

.logo-text {
    margin: 0;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900; font-size: 2.2em; letter-spacing: -1px;
}

.controls { display: flex; gap: 15px; align-items: center; }

/* Cards & Glassmorphism */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 40px; border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Advanced Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; text-align: left;
    margin-bottom: 30px;
}

.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label {
    font-size: 0.9em; font-weight: 600; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 1px;
}

input[type="text"], input[type="password"], textarea, select {
    width: 100%; padding: 15px;
    border: 1px solid rgba(59, 130, 246, 0.4); border-radius: 12px;
    background: rgba(0, 0, 0, 0.4); color: #fff; font-size: 1em;
    font-family: inherit; transition: all 0.3s ease;
    box-sizing: border-box;
}

input:focus, textarea:focus, select:focus {
    outline: none; border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.3); background: rgba(0, 0, 0, 0.6);
}

select { appearance: none; cursor: pointer; }

/* Buttons */
button {
    padding: 16px 30px; width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--btn-text); border: none; border-radius: 12px; cursor: pointer;
    font-size: 1.1em; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

button:hover {
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-outline {
    background: transparent; border: 2px solid var(--primary-color);
    color: var(--primary-color); box-shadow: none; padding: 10px 20px; width: auto;
}
.btn-outline:hover { background: rgba(14, 165, 233, 0.1); box-shadow: 0 0 15px rgba(14, 165, 233, 0.3); }

/* Typography & Layouts */
.hero-title { font-size: 3.5em; margin-bottom: 10px; color: #fff; font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; }
.hero-subtitle { color: var(--primary-color); font-size: 1.1em; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; }

/* Wizard & Mockup Imports from V11 */
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.brand-title { font-size: 2em; color: #fff; margin: 0 0 5px 0; font-weight: 800; }
.domain-title { font-size: 1.1em; color: var(--primary-color); margin-bottom: 15px; display: inline-block; padding: 5px 15px; background: rgba(14, 165, 233, 0.1); border-radius: 20px; }

.wizard-step { display: none; animation: fadeIn 0.5s; }
.wizard-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.color-picker { display: flex; gap: 15px; margin: 20px 0; justify-content: center; flex-wrap: wrap; }
.color-swatch { width: 50px; height: 50px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: transform 0.2s; }
.color-swatch:hover, .color-swatch.selected { transform: scale(1.15); border-color: #fff; box-shadow: 0 0 20px rgba(255,255,255,0.4); }
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 20px 0; }
.addon-card { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); padding: 25px; border-radius: 12px; cursor: pointer; transition: all 0.3s; }
.addon-card:hover, .addon-card.selected { border-color: var(--primary-color); background: rgba(14, 165, 233, 0.15); transform: translateY(-5px); }

.spinner { display: none; margin: 40px auto; width: 60px; height: 60px; border: 4px solid rgba(255,255,255,0.1); border-top: 4px solid var(--primary-color); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; gap: 15px; }
    .results-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5em; }
    .card { padding: 25px; }
    .header-top { flex-direction: column; text-align: center; }
}

/* Navigation Links */
.nav-links { display: flex; gap: 25px; align-items: center; margin: 0 20px; }
.nav-links a { color: var(--text-color); text-decoration: none; font-weight: 600; font-size: 1.05em; transition: color 0.3s ease, text-shadow 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); text-shadow: 0 0 10px rgba(14, 165, 233, 0.5); }

/* Static Page Content Formatting */
.content-section { line-height: 1.8; font-size: 1.15em; color: #cbd5e1; }
.content-section h3 { color: #fff; font-size: 1.5em; margin-top: 30px; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.content-section p { margin-bottom: 20px; }
.pricing-tier { border: 2px solid var(--border-color); border-radius: 15px; padding: 30px; text-align: left; background: rgba(0,0,0,0.4); transition: transform 0.3s ease; }
.pricing-tier:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.pricing-tier h3 { margin-top: 0; border: none; font-size: 1.8em; color: var(--primary-color); }
.pricing-price { font-size: 2.5em; font-weight: 900; color: #fff; margin-bottom: 20px; }
.pricing-tier ul { list-style: none; padding: 0; margin-bottom: 30px; }
.pricing-tier ul li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.pricing-tier ul li::before { content: '✓'; color: #10b981; font-weight: bold; }

@media (max-width: 768px) {
    .nav-links { display: none; /* In a production build, tie this to a hamburger menu */ }
}
