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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: radial-gradient(120% 120% at 20% 20%, rgba(255,215,0,0.08) 0%, rgba(255,215,0,0) 40%), linear-gradient(135deg, #0f172a 0%, #0b1223 100%);
    color: #e0e0e0;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 32px 20px 56px;
    margin: 0 auto;
}

/* Landing Page Styles */
.landing-page {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
}

.hero-text h1 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #f7f7ff;
}

.hero-text .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1em;
    color: #c3c8d4;
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.login-button {
    background: linear-gradient(135deg, #b074ff 0%, #5f7bff 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1.05em;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 12px 30px rgba(92, 110, 255, 0.35);
    font-weight: 700;
}

.login-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(92, 110, 255, 0.45);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.04);
}

.secondary-button:hover {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

.privacy-note {
    margin-top: 18px;
    font-size: 0.9em;
    color: #8ea1c0;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-logo {
    max-width: 260px;
    width: 100%;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.pillar-card {
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

.pillar-card h3 {
    margin-bottom: 10px;
    color: #f4f6ff;
    font-size: 1.05rem;
}

.pillar-card p {
    color: #b8c3d6;
    line-height: 1.5;
    font-size: 0.98rem;
}

/* App Content Styles */
.app-content {
    width: 100%;
}

.hidden {
    display: none !important;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5em;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ff9f43; /* modern orange */
    text-shadow: 0 4px 16px rgba(255, 159, 67, 0.35);
}

.connected-as {
    color: #b0b0b0;
    font-size: 0.9em;
}

.logout-button {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-button:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.5);
}

.main-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.console-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.muted {
    color: #9ba7bc;
}

.console-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill-button {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill-button:hover {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

.pill-button.ghost {
    background: transparent;
}

.console-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.card.wide {
    grid-column: span 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.8rem;
    color: #cfd8ea;
}

.list {
    list-style: none;
    color: #c3c8d4;
    line-height: 1.5;
    padding-left: 0;
    margin: 0;
}

.list li {
    margin-bottom: 6px;
}
.welcome-message {
    text-align: center;
    padding: 40px;
}

.welcome-message h2 {
    color: #ffd700;
    margin-bottom: 20px;
}

.welcome-message p {
    color: #b0b0b0;
    font-size: 1.1em;
}

/* Error Message Styles */
.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

