/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    --bg-primary: #05070a;
    --bg-secondary: #0b0d12;
    --bg-card: rgba(11, 13, 18, 0.8);
    
    --color-gold: #dfbc74;
    --color-gold-hover: #eecf92;
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    
    --border-color: rgba(255, 255, 255, 0.05);
    --border-focus: rgba(223, 188, 116, 0.4);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', var(--font-sans);
    
    --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max-width: 1100px;
    --border-radius: 12px;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- BACKGROUND --- */
.bg-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(223, 188, 116, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    top: -20vw;
    right: -10vw;
}

/* --- HEADER --- */
.header {
    padding: 32px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-gold {
    color: var(--color-gold);
    font-weight: 300;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(223, 188, 116, 0.25);
    background: rgba(223, 188, 116, 0.05);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gold);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(223, 188, 116, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(223, 188, 116, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 4px rgba(223, 188, 116, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(223, 188, 116, 0); }
}

/* --- LAYOUT CONFIGURATION --- */
.main-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
}

/* --- HERO SECTION --- */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.domain-tag {
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 500;
}

.domain-display {
    display: flex;
    align-items: center;
    gap: 14px;
}

.domain-name {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.copy-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(223, 188, 116, 0.05);
}

.tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--color-gold);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.copy-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hero-lead {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

/* Bullet Items */
.meta-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
}

.meta-item svg {
    color: var(--color-gold);
    opacity: 0.85;
}

/* --- INQUIRY FORM CARD --- */
.action-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inquiry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 36px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.card-header {
    margin-bottom: 24px;
}

.card-header h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-header p {
    font-size: 13px;
    color: var(--text-secondary);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

input, textarea {
    background: rgba(5, 7, 10, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 14px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--border-focus);
    background: rgba(5, 7, 10, 0.9);
}

/* Currency Wrap */
.input-currency-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 14px;
}

.input-currency-wrapper input {
    padding-left: 28px;
    width: 100%;
}

/* Button UI */
.submit-btn {
    background: var(--color-gold);
    color: var(--bg-primary);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Success Overlay */
.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    text-align: center;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-icon-wrapper {
    border: 1px solid var(--color-gold);
    background: rgba(223, 188, 116, 0.05);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
}

.success-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.reset-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition);
}

.reset-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Escrow Footer Labels */
.escrow-logos {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* --- FOOTER --- */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-container {
    text-align: center;
}
/* Brand Suitability Section (LLM Semantic Search Optimization) */
.brand-suitability {
    border-top: 1px solid var(--border-color);
    margin-top: 36px;
    padding-top: 24px;
    text-align: left;
}

.brand-suitability h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-suitability p {
    font-size: 13.5px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 12px;
}

.suitability-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suitability-list li {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 300;
    position: relative;
    padding-left: 16px;
}

.suitability-list li::before {
    content: "•";
    color: var(--color-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Naming FAQ Section */
.naming-faq {
    border-top: 1px solid var(--border-color);
    margin-top: 32px;
    padding-top: 24px;
    text-align: left;
}

.naming-faq h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.faq-item {
    margin-bottom: 16px;
}

.faq-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
}

/* --- MEDIA QUERY RESPONSIVENESS --- */
@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 20px;
        padding-bottom: 60px;
    }
    
    .hero-section {
        align-items: center;
        text-align: center;
    }
    
    .meta-bullets {
        align-items: center;
    }
}

@media (max-width: 540px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .domain-display {
        flex-direction: column;
        gap: 10px;
    }
    
    .inquiry-card {
        padding: 24px;
    }
}
