.ct-app,
.ct-card {
    box-sizing: border-box;
}

.ct-app {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ct-hero,
.ct-card {
    background: #101827;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.ct-hero {
    padding: 28px;
    margin-bottom: 20px;
}

.ct-kicker {
    margin: 0 0 8px;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 700;
}

.ct-hero h1,
.ct-card h2 {
    margin-top: 0;
}

.ct-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ct-card {
    padding: 22px;
}

.ct-card p {
    color: #cbd5e1;
}

.ct-table {
    width: 100%;
    border-collapse: collapse;
    color: #f8fafc;
}

.ct-table th,
.ct-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

@media (max-width: 780px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }
}

.ct-form {
    display: grid;
    gap: 14px;
}

.ct-form label {
    display: grid;
    gap: 6px;
    color: #e2e8f0;
    font-weight: 700;
}

.ct-form input,
.ct-form select,
.ct-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    padding: 11px 12px;
    background: #0f172a;
    color: #f8fafc;
}

.ct-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border: 0;
    border-radius: 999px;
    background: #38bdf8;
    color: #082f49;
    padding: 11px 18px;
    font-weight: 800;
    cursor: pointer;
}

.ct-two,
.ct-resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ct-resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ct-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ct-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ct-list li:last-child {
    border-bottom: 0;
}

.ct-list span,
.ct-muted {
    color: #94a3b8;
    font-weight: 500;
}

.ct-notice {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
}

@media (max-width: 780px) {
    .ct-two,
    .ct-resource-grid {
        grid-template-columns: 1fr;
    }
}
