body {
    margin: 0;
    padding: 0;
    background: #0f172a;
    color: white;
    font-family: Inter, Arial, sans-serif;
}

.layout {
    min-height: 100vh;
}

.topbar {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 1px solid #1e293b;
    background: #111827;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-info {
    color: #94a3b8;
}

.logout-btn {
    background: #dc2626;
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.logout-btn:hover {
    background: #b91c1c;
}

.page-content {
    max-width: 1200px;
    margin: auto;
    padding: 40px;
}

.card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 8px 24px rgba(0,0,0,0.25);
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    background: #2563eb;
    margin-right: 10px;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1d4ed8;
}

.btn-primary {
    display:inline-block;
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
}

.badge-success {
    background: #14532d;
    color: #bbf7d0;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
}

.badge-warning {
    background: #78350f;
    color: #fde68a;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
}

a {
    color: #60a5fa;
}

a:hover {
    color: #93c5fd;
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

th {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #374151;
}

td {
    padding: 12px;
    border-bottom: 1px solid #374151;
}

tr:hover {
    background: #1e293b;
}

input {
    width: 100%;
    padding: 14px;
    background: #0f172a;
    color: white;
    border: 1px solid #334155;
    border-radius: 10px;
    box-sizing: border-box;
}

input:focus {
    outline: none;
    border-color: #2563eb;
}

h1,
h2,
h3 {
    margin-top: 0;
}

@media (max-width: 768px) {

    .topbar {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-content {
        padding: 20px;
    }
    .topbar-right {
        gap: 10px;
    }
    .user-info {
        display: none;
    }
}

.app-shell {
    display:flex;
    min-height:calc(100vh - 70px);
}

.sidebar {
    width:240px;
    background:#111827;
    border-right:1px solid #1f2937;
    padding:25px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.sidebar a {
    text-decoration:none;
    color:#cbd5e1;

    padding:12px;
    border-radius:10px;
}

.sidebar a:hover {
    background:#1e293b;
    color:white;
}

.page-content {
    flex:1;
}

.plan-badge.free {
    background: #374151;
}

.plan-badge.founder {
    background: #7c3aed;
}

.plan-badge.premium {
    background: #059669;
}

.plan-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: #2563eb;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(280px, 1fr)
    );
    gap: 24px;
}

.pricing-card {
    position: relative;
    text-align: center;
}

.pricing-card h2 {
    margin-bottom: 12px;
}

.price {
    font-size: 42px;
    font-weight: 700;
}

.price-period {
    color: #94a3b8;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.pricing-features li {
    padding: 8px 0;
}

.featured {
    border: 2px solid #2563eb;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: white;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.activity-card {
    display: flex;
    gap: 16px;
    align-items: center;
}

.activity-icon {
    font-size: 28px;
}

.pricing-features .disabled {
    color: #9ca3af;
    opacity: .75;
}

.public-footer{
    width:100%;
    margin-top:50px;
    padding:22px 0;
    text-align:center;
    font-size:14px;
}

.public-footer a{
    color:#ff6a00;
    font-weight:600;
    text-decoration:none;
    transition:opacity .2s ease;
}

.public-footer a:hover{
    opacity:.75;
}

.hero::before{
    content:"";
    position:absolute;
    left:50%;
    top:-40px;
    width:320px;
    height:320px;
    transform:translateX(-50%);
    border-radius:50%;
    background:radial-gradient(
        rgba(255,170,0,.14),
        transparent 70%
    );
    filter:blur(25px);
    z-index:-1;
}

.hero-proof{
    margin-top:40px;
    color:#f6c453;
    font-size:15px;
    letter-spacing:.5px;
}

.hero-proof span{
    color:#d8e3ef;
    margin-left:8px;
}