@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f0f1a;
    color: #e2e8f0;
    margin-bottom: 60px;
    line-height: 1.6;
}

.navbar {
    background: rgba(15, 15, 26, 0.85) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.navbar-brand {
    font-weight: 800 !important;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem !important;
}

.nav-link {
    color: #94a3b8 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e2e8f0 !important;
}

.tenant-hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
    position: relative;
    overflow: hidden;
}

.tenant-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent, #6366f1) 0%, transparent 70%);
    opacity: 0.08;
    pointer-events: none;
}

.tenant-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.tenant-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent, #6366f1), #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.tenant-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

.tenant-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 1rem;
}

@media (max-width: 640px) {
    .tenant-info-grid {
        grid-template-columns: 1fr;
    }
    .tenant-title {
        font-size: 2rem;
    }
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.subdomain-card {
    border-color: var(--accent, #6366f1);
    border-width: 1px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.03));
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #f1f5f9;
}

.info-value.mono {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 1rem;
    font-weight: 500;
    word-break: break-all;
}

.info-value.highlight {
    color: var(--accent, #6366f1);
    font-size: 1.5rem;
}

.tenant-features {
    max-width: 700px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}

.features-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--accent, #6366f1);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    opacity: 0.85;
}

.tenant-note {
    max-width: 700px;
    margin: 2rem auto 3rem;
    padding: 1.25rem 1.5rem;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    font-size: 0.9rem;
    color: #94a3b8;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.tenant-note strong {
    color: #c7d2fe;
}

.footer {
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: #64748b;
}

.footer a {
    color: #818cf8;
}