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

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --bg-primary: #09090b;
    --bg-secondary: #0f0f12;
    --bg-card: #151518;
    --bg-card-hover: #1c1c21;
    
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --accent: #f8922f;
    --accent-light: #818cf8;
    --accent-dark: #4f46e5;
    --accent-glow: rgb(244 192 100 / 40%);
    
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.3);
    
    --border: #27272a;
    --border-light: #3f3f46;
    
    /* Gradient */
    --gradient-accent: linear-gradient(135deg, #d27847 0%, #f6bd5c 50%, #4b4000 100%);
    --gradient-card: linear-gradient(145deg, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    
    /* Spacing */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 50% 80%, rgba(168, 85, 247, 0.04) 0%, transparent 40%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.bg-glow--1 {
    top: -200px;
    right: -200px;
    background: var(--accent);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.bg-glow--2 {
    bottom: -200px;
    left: -200px;
    background: #8b5cf6;
    opacity: 0.1;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.1); }
}

/* ===== LAYOUT ===== */
.container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 0px;
    padding-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 768px) {
    .container {
        padding-top: 0px;
        padding-bottom: 50px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ===== HEADER ===== */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--success);
}

.status-badge__dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--success-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.date-badge {
    font-size: 14px;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
}

/* H1 */
h1 {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.h1-accent {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.h1-sub {
    display: block;
    font-size: 0.45em;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 8px;
}

.tagline {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat__value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat__label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

@media (max-width: 480px) {
    .stats-row {
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
}

/* ===== CTA CARD ===== */
.cta-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 60px;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
}

.cta-card__shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.03) 50%,
        transparent 60%
    );
    animation: shine 8s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(0deg); }
}

.cta-card__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px var(--accent-glow);
}

.cta-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.cta-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.cta-content p strong {
    color: var(--text-primary);
}

/* Main Button */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--gradient-accent);
    color: white;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-main:active {
    transform: translateY(-1px);
}

.btn-main__icon {
    display: flex;
    transition: transform 0.3s ease;
}

.btn-main__icon svg {
    width: 20px;
    height: 20px;
}

.btn-main:hover .btn-main__icon {
    transform: translateX(4px);
}

.btn-main--large {
    padding: 22px 48px;
    font-size: 18px;
}

/* CTA Meta */
.cta-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cta-meta span {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .cta-card {
        padding: 32px 20px;
    }
    .cta-meta {
        gap: 12px;
    }
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-light);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    margin-bottom: 56px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-num {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    background: rgba(99, 102, 241, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.section-header h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.section-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-body p:last-child {
    margin-bottom: 0;
}

.text-muted {
    color: var(--text-muted);
    font-size: 14px;
}

/* Content Image */
.content-image {
    margin: 28px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.content-image__wrapper {
    position: relative;
    background: var(--bg-secondary);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-image figcaption {
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text-muted);
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

/* ===== STEPS ===== */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s ease;
}

.step-item:hover {
    border-color: var(--border-light);
}

.step-item__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.step-item__content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.step-item__content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Copy Block */
.copy-block {
    margin-top: 28px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.copy-block__label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.copy-block__field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.copy-block__field code {
    flex: 1;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--accent-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-block__btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-block__btn:hover {
    background: var(--border);
    border-color: var(--border-light);
}

.copy-block__btn svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

/* ===== STATUS CARD ===== */
.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 24px 0;
}

.status-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
}

.status-card__row:last-child {
    border-bottom: none;
}

.status-card__label {
    font-size: 15px;
    color: var(--text-muted);
}

.status-card__value {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-card__value--online {
    color: var(--success);
}

.status-card__value--secure {
    color: var(--success);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span:first-child {
    flex: 1;
    padding-right: 16px;
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item__icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
    padding: 0 24px 20px;
}

.faq-item__answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    pointer-events: none;
}

.bottom-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.bottom-cta p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    position: relative;
}

.bottom-cta .btn-main {
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.footer__main {
    margin-bottom: 16px;
}

.footer__main p {
    font-size: 15px;
    color: var(--text-muted);
}

.footer__disclaimer p {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header { animation: fadeInUp 0.6s ease-out; }
.cta-card { animation: fadeInUp 0.6s ease-out 0.1s both; }
.features { animation: fadeInUp 0.6s ease-out 0.2s both; }
.content-section { animation: fadeInUp 0.6s ease-out 0.3s both; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--accent);
    color: white;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.navbar__logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__link {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.navbar__link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.navbar__link--active {
    color: var(--accent-light);
    background: rgba(99, 102, 241, 0.1);
}

/* Burger button */
.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}

.navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar__toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile */
@media (max-width: 640px) {
    .navbar__toggle {
        display: flex;
    }
    
    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 4px;
        padding: 16px;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 100;
    }
    
    .navbar__menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navbar__link {
        width: 100%;
        text-align: center;
    }
    
    .navbar {
        position: relative;
    }
}
/* ===========================================
   Comparison Table - Marius Theme
   =========================================== */
.comparison-section {
    margin-bottom: 56px;
}

.comparison-section .section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.comparison-section .section-body {
    margin-bottom: 28px;
}

.comparison-section .section-body p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.comparison-table thead th {
    background: var(--bg-secondary);
    padding: 24px 20px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
}

.comparison-table thead th:first-child {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
}

.comparison-table thead th .mp-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.comparison-table thead th .mp-tag {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-mono);
}

.comparison-table thead th.highlight {
    background: rgba(248, 146, 47, 0.08);
    border-top: 3px solid var(--accent);
}

.comparison-table thead th.highlight .mp-name {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table tbody td {
    padding: 18px 20px;
    text-align: center;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table tbody td.highlight {
    background: rgba(248, 146, 47, 0.04);
}

.comparison-table tbody tr:hover td.highlight {
    background: rgba(248, 146, 47, 0.08);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Cell Elements */
.ct-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.ct-badge--green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.ct-badge--yellow {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.ct-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.ct-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 16px;
}

.ct-star--on { color: #f59e0b; }
.ct-star--off { color: var(--border-light); }

.ct-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.ct-tag {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--font-mono);
    background: rgba(248, 146, 47, 0.08);
    border: 1px solid rgba(248, 146, 47, 0.2);
    color: var(--accent);
    white-space: nowrap;
}

.ct-pros {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    padding-left: 4px;
}

.ct-pro {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-primary);
}

.ct-pro__check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-pro__check svg {
    width: 10px;
    height: 10px;
}

/* Mobile Cards */
.ct-mobile {
    display: none;
}

.ct-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ct-card:last-child {
    margin-bottom: 0;
}

.ct-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.ct-card--featured {
    border-color: rgba(248, 146, 47, 0.3);
    background: linear-gradient(145deg, rgba(248, 146, 47, 0.04) 0%, transparent 50%);
}

.ct-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.ct-card__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.ct-card--featured .ct-card__name {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ct-card__url {
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.ct-card__rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.ct-card__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ct-card__label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ct-card__value {
    font-size: 14px;
    color: var(--text-primary);
    text-align: right;
}

.ct-card__footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.ct-card__footer-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .ct-desktop {
        display: none;
    }
    .ct-mobile {
        display: block;
    }
}