
/**

 * NeuraWeb Shell CSS

 * Based on neuraweb-dashboard.html mockup

 */



:root {

    --nw-primary: #1A365D;

    --nw-secondary: #2D5A87;

    --nw-accent: #3D7AB5;

    --nw-accent-light: #63B3ED;

    --nw-success: #38A169;

    --nw-warning: #D69E2E;

    --nw-danger: #E53E3E;

    --nw-bg-dark: #0A1929;

    

    --nw-topbar-height: 40px;

    --nw-une-height: 56px;

    --nw-search-height: 56px;

    --nw-footer-height: 60px;

    --nw-status-height: 32px;

    

    --bg-primary: #f8fafc;

    --bg-secondary: #ffffff;

    --bg-card: #ffffff;

    --text-primary: #1e293b;

    --text-secondary: #64748b;

    --text-muted: #94a3b8;

    --border-color: #e2e8f0;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);

    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);

}



[data-theme="dark"] {

    --bg-primary: #0f172a;

    --bg-secondary: #1e293b;

    --bg-card: #1e293b;

    --text-primary: #f1f5f9;

    --text-secondary: #94a3b8;

    --text-muted: #64748b;

    --border-color: #334155;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);

    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4);

}



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



body {

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    background: var(--bg-primary);

    color: var(--text-primary);

    min-height: 100vh;

    font-size: 14px;

    line-height: 1.5;

}



/* ALERT BAR */

.alert-bar {

    position: fixed;

    top: 0; left: 0; right: 0;

    height: var(--nw-topbar-height);

    background: linear-gradient(135deg, var(--nw-success) 0%, #2f855a 100%);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    z-index: 1000;

    padding: 0 24px;

}



.alert-bar .pulse-dot {

    width: 8px; height: 8px;

    background: #fff;

    border-radius: 50%;

    animation: pulse 2s infinite;

}



@keyframes pulse {

    0%, 100% { opacity: 1; transform: scale(1); }

    50% { opacity: 0.7; transform: scale(1.2); }

}



.alert-bar .alert-text { color: white; font-size: 13px; font-weight: 500; }

.alert-bar .alert-link { color: white; font-weight: 600; text-decoration: underline; cursor: pointer; }

.alert-bar .close-btn { position: absolute; right: 16px; background: none; border: none; color: white; cursor: pointer; opacity: 0.8; font-size: 18px; }



/* UNE BAR */

.une-bar {

    position: fixed;

    top: var(--nw-topbar-height);

    left: 0; right: 0;

    height: var(--nw-une-height);

    background: var(--nw-bg-dark);

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 24px;

    z-index: 999;

}



.une-left { display: flex; align-items: center; gap: 20px; }



.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-icon {

    width: 36px; height: 36px;

    background: linear-gradient(135deg, var(--nw-accent) 0%, var(--nw-accent-light) 100%);

    border-radius: 8px;

    display: flex; align-items: center; justify-content: center;

    color: white; font-size: 18px;

}

.logo-text { color: white; font-size: 20px; font-weight: 700; letter-spacing: -0.5px; }



.une-input-wrapper {

    display: flex; align-items: center;

    background: rgba(255,255,255,0.1);

    border-radius: 8px;

    padding: 0 12px;

    height: 36px;

}

.une-prefix { color: var(--nw-accent-light); font-family: 'Fira Code', monospace; font-size: 13px; font-weight: 500; }

.une-input {

    background: none; border: none; color: white;

    font-family: 'Fira Code', monospace; font-size: 13px;

    width: 180px; outline: none;

}

.une-input::placeholder { color: rgba(255,255,255,0.5); }



.une-nav { display: flex; gap: 24px; }

.une-nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }

.une-nav a:hover, .une-nav a.active { color: white; }



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



.points-badge {

    display: flex; align-items: center; gap: 6px;

    background: linear-gradient(135deg, var(--nw-warning) 0%, #b7791f 100%);

    padding: 6px 12px; border-radius: 20px;

    color: white; font-weight: 600; font-size: 13px;

}



.notification-btn {

    position: relative; background: none; border: none;

    color: rgba(255,255,255,0.8); font-size: 18px; cursor: pointer; padding: 8px;

}

.notification-badge {

    position: absolute; top: 2px; right: 2px;

    background: var(--nw-danger); color: white;

    font-size: 10px; font-weight: 700;

    min-width: 16px; height: 16px; border-radius: 8px;

    display: flex; align-items: center; justify-content: center;

}



.user-menu { display: flex; align-items: center; gap: 10px; cursor: pointer; }

.user-avatar {

    width: 36px; height: 36px;

    background: linear-gradient(135deg, var(--nw-accent) 0%, var(--nw-accent-light) 100%);

    border-radius: 50%;

    display: flex; align-items: center; justify-content: center;

    color: white; font-weight: 600; font-size: 12px;

    border: 2px solid var(--nw-accent-light);

}

.user-info { text-align: right; }

.user-name { color: white; font-weight: 600; font-size: 13px; }

.user-namespace { color: var(--nw-accent-light); font-size: 12px; font-family: 'Fira Code', monospace; }



.auth-buttons { display: flex; gap: 12px; }

.btn { padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }

.btn-secondary { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: white; }

.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-primary { background: var(--nw-accent); border: none; color: white; }

.btn-primary:hover { background: var(--nw-accent-light); }

.btn-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-primary); }

.btn-outline:hover { border-color: var(--nw-accent); color: var(--nw-accent); }



/* SEARCH BAR */

.search-bar {

    position: fixed;

    top: calc(var(--nw-topbar-height) + var(--nw-une-height));

    left: 0; right: 0;

    height: var(--nw-search-height);

    background: var(--bg-secondary);

    border-bottom: 1px solid var(--border-color);

    display: flex;

    align-items: center;

    padding: 0 24px;

    gap: 16px;

    z-index: 998;

}



.search-input-wrapper {

    flex: 1; max-width: 600px;

    display: flex; align-items: center;

    background: var(--bg-primary);

    border: 1px solid var(--border-color);

    border-radius: 28px;

    padding: 0 16px; height: 40px;

    transition: border-color 0.2s, box-shadow 0.2s;

}

.search-input-wrapper:focus-within { border-color: var(--nw-accent); box-shadow: 0 0 0 3px rgba(61,122,181,0.1); }

.search-icon { color: var(--text-muted); margin-right: 10px; }

.search-input { flex: 1; border: none; background: none; font-size: 14px; color: var(--text-primary); outline: none; }

.search-input::placeholder { color: var(--text-muted); }



.filter-chips { display: flex; gap: 8px; }

.filter-chip {

    padding: 6px 14px; border-radius: 16px; font-size: 13px; font-weight: 500;

    cursor: pointer; transition: all 0.2s;

    border: 1px solid var(--border-color);

    background: var(--bg-secondary); color: var(--text-secondary);

}

.filter-chip:hover { border-color: var(--nw-accent); color: var(--nw-accent); }

.filter-chip.active { background: var(--nw-accent); color: white; border-color: var(--nw-accent); }



/* MAIN CONTENT */

.main-content {

    margin-top: calc(var(--nw-topbar-height) + var(--nw-une-height) + var(--nw-search-height));

    margin-bottom: calc(var(--nw-footer-height) + var(--nw-status-height));

    padding: 24px;

    min-height: calc(100vh - var(--nw-topbar-height) - var(--nw-une-height) - var(--nw-search-height) - var(--nw-footer-height) - var(--nw-status-height));

}



/* LANDING */

.landing-hero { text-align: center; padding: 60px 20px; max-width: 800px; margin: 0 auto; }

.landing-hero h1 { font-size: 48px; font-weight: 700; color: var(--nw-primary); margin-bottom: 20px; }

.landing-hero p { font-size: 18px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px; }

.landing-stats { display: flex; justify-content: center; gap: 60px; }

.landing-stat { text-align: center; }

.landing-stat-value { font-size: 42px; font-weight: 700; color: var(--nw-primary); }

.landing-stat-label { font-size: 14px; color: var(--text-secondary); }



/* FOOTER BAR */

.footer-bar {

    position: fixed;

    bottom: var(--nw-status-height);

    left: 0; right: 0;

    height: var(--nw-footer-height);

    background: var(--nw-bg-dark);

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 24px;

    z-index: 997;

}



.footer-links { display: flex; gap: 24px; }

.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color 0.2s; }

.footer-links a:hover { color: white; }



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

.beta-badge { background: var(--nw-success); color: white; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.copyright { color: rgba(255,255,255,0.6); font-size: 12px; }

.theme-toggle { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); padding: 6px 12px; border-radius: 20px; cursor: pointer; }

.theme-toggle span, .theme-toggle i { color: white; font-size: 12px; }



.footer-social { display: flex; gap: 16px; }

.footer-social a { color: rgba(255,255,255,0.6); font-size: 16px; transition: color 0.2s; }

.footer-social a:hover { color: white; }



/* STATUS BAR */

.status-bar {

    position: fixed;

    bottom: 0; left: 0; right: 0;

    height: var(--nw-status-height);

    background: var(--nw-primary);

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 24px;

    z-index: 996;

}



.status-left, .status-right { display: flex; align-items: center; gap: 16px; }

.status-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); font-size: 12px; }

.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--nw-success); }

.status-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }

.status-clock { font-family: 'Fira Code', monospace; font-size: 12px; color: rgba(255,255,255,0.8); }



/* RESPONSIVE */

@media (max-width: 768px) {

    .filter-chips { display: none; }

    .une-nav { display: none; }

    .user-info { display: none; }

    .landing-hero h1 { font-size: 32px; }

    .landing-stats { flex-direction: column; gap: 24px; }

}




/* AUTH FORMS */

.auth-card {

    width: 100%;

    max-width: 440px;

    margin: 40px auto;

    background: var(--bg-secondary);

    border-radius: 16px;

    border: 1px solid var(--border-color);

    box-shadow: var(--shadow-md);

    overflow: hidden;

}



.auth-header {

    padding: 28px 32px 20px;

    text-align: center;

    border-bottom: 1px solid var(--border-color);

    background: var(--bg-primary);

}



.auth-header h1 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }

.auth-header p { color: var(--text-secondary); font-size: 14px; }



.auth-body { padding: 28px 32px; }



.form-group { margin-bottom: 18px; }

.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }



.form-input {

    width: 100%;

    padding: 12px 14px;

    font-size: 14px;

    border: 2px solid var(--border-color);

    border-radius: 10px;

    background: var(--bg-primary);

    color: var(--text-primary);

    outline: none;

    transition: border-color 0.2s, box-shadow 0.2s;

}

.form-input:focus { border-color: var(--nw-accent); box-shadow: 0 0 0 3px rgba(61,122,181,0.1); }

.form-input::placeholder { color: var(--text-muted); }



.input-with-suffix { display: flex; }

.input-with-suffix .form-input { border-radius: 10px 0 0 10px; border-right: none; }

.input-suffix { padding: 12px 14px; background: var(--bg-primary); border: 2px solid var(--border-color); border-left: none; border-radius: 0 10px 10px 0; font-size: 14px; font-weight: 600; color: var(--nw-accent); display: flex; align-items: center; }



.form-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 13px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-link { color: var(--nw-accent); text-decoration: none; }

.form-link:hover { text-decoration: underline; }



.checkbox-label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-secondary); cursor: pointer; }

.checkbox-label input { margin-top: 2px; accent-color: var(--nw-accent); }

.checkbox-label a { color: var(--nw-accent); text-decoration: none; }

.checkbox-label a:hover { text-decoration: underline; }



.btn-block { width: 100%; justify-content: center; margin-top: 8px; }



.auth-footer { text-align: center; padding-top: 20px; margin-top: 20px; border-top: 1px solid var(--border-color); font-size: 14px; color: var(--text-secondary); }

.auth-footer a { color: var(--nw-accent); font-weight: 600; text-decoration: none; }

.auth-footer a:hover { text-decoration: underline; }



.subtitle { color: var(--text-secondary); margin-top: 8px; }




/* INFO PAGES */

.info-page { max-width: 800px; margin: 0 auto; }

.info-page > h1 { font-size: 32px; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }

.info-page > h1 i { color: var(--nw-accent); }



.info-card {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 16px;

    padding: 32px;

    box-shadow: var(--shadow-sm);

}



.info-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--nw-primary); }

.info-card h3 { font-size: 16px; font-weight: 600; margin: 24px 0 12px; color: var(--text-primary); }

.info-card p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }

.info-card ul { margin: 12px 0 12px 24px; color: var(--text-secondary); }

.info-card li { margin-bottom: 8px; line-height: 1.6; }

.info-card a { color: var(--nw-accent); text-decoration: none; }

.info-card a:hover { text-decoration: underline; }



.last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }



.code-block {

    background: var(--nw-bg-dark);

    color: var(--nw-accent-light);

    padding: 16px 20px;

    border-radius: 8px;

    font-family: 'Fira Code', monospace;

    font-size: 14px;

    margin: 12px 0;

}



/* HELP PAGE */

.help-search { margin-bottom: 24px; }

.help-topics { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin: 16px 0; }

.help-topic {

    display: flex; align-items: center; gap: 12px;

    padding: 16px;

    background: var(--bg-primary);

    border: 1px solid var(--border-color);

    border-radius: 10px;

    text-decoration: none;

    color: var(--text-primary);

    transition: all 0.2s;

}

.help-topic:hover { border-color: var(--nw-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.help-topic i { font-size: 20px; color: var(--nw-accent); }

.help-topic span { font-weight: 500; }




/* DASHBOARD */

.dashboard-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }

.welcome-section h1 { font-size: 28px; font-weight: 700; margin-bottom: 4px; }

.welcome-section p { color: var(--text-secondary); font-size: 14px; }

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



/* Stats Row */

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }

.stat-card {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 12px;

    padding: 20px;

    display: flex;

    align-items: flex-start;

    gap: 16px;

    box-shadow: var(--shadow-sm);

    transition: transform 0.2s, box-shadow 0.2s;

}

.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.stat-icon {

    width: 48px; height: 48px;

    border-radius: 12px;

    display: flex; align-items: center; justify-content: center;

    font-size: 20px;

}

.stat-icon.blue { background: rgba(59,130,246,0.1); color: #3b82f6; }

.stat-icon.green { background: rgba(34,197,94,0.1); color: #22c55e; }

.stat-icon.purple { background: rgba(168,85,247,0.1); color: #a855f7; }

.stat-icon.orange { background: rgba(249,115,22,0.1); color: #f97316; }

.stat-content { flex: 1; }

.stat-value { font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 4px; }

.stat-label { color: var(--text-secondary); font-size: 13px; margin-bottom: 8px; }

.stat-trend { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 12px; }

.stat-trend.up { background: rgba(34,197,94,0.1); color: #22c55e; }

.stat-trend.down { background: rgba(239,68,68,0.1); color: #ef4444; }



/* Main Grid */

.main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }

.main-column, .sidebar-column { display: flex; flex-direction: column; gap: 24px; }



/* Cards */

.card {

    background: var(--bg-secondary);

    border: 1px solid var(--border-color);

    border-radius: 12px;

    box-shadow: var(--shadow-sm);

    overflow: hidden;

}

.card-header {

    padding: 16px 20px;

    border-bottom: 1px solid var(--border-color);

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.card-title { font-size: 16px; font-weight: 600; }

.card-action { color: var(--nw-accent); font-size: 13px; font-weight: 500; text-decoration: none; cursor: pointer; }

.card-action:hover { text-decoration: underline; }

.card-body { padding: 20px; }



/* dApps Grid */

.dapps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.dapp-card {

    background: var(--bg-primary);

    border: 1px solid var(--border-color);

    border-radius: 10px;

    padding: 16px;

    text-align: center;

    cursor: pointer;

    transition: all 0.2s;

}

.dapp-card:hover { border-color: var(--nw-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.dapp-icon {

    width: 44px; height: 44px;

    border-radius: 10px;

    display: flex; align-items: center; justify-content: center;

    font-size: 20px;

    margin: 0 auto 10px;

    color: white;

}

.dapp-name { font-weight: 600; font-size: 13px; margin-bottom: 4px; }

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



/* Chart Container */

.chart-container { height: 220px; position: relative; }



/* Privacy Widget */

.privacy-widget { text-align: center; padding: 24px 20px; }

.privacy-gauge { position: relative; width: 140px; height: 140px; margin: 0 auto 16px; }

.privacy-circle {

    width: 100%; height: 100%;

    border-radius: 50%;

    background: conic-gradient(var(--nw-success) 0deg, var(--nw-success) 360deg, var(--border-color) 360deg);

    display: flex; align-items: center; justify-content: center;

}

.privacy-inner {

    width: 110px; height: 110px;

    background: var(--bg-secondary);

    border-radius: 50%;

    display: flex; flex-direction: column;

    align-items: center; justify-content: center;

}

.privacy-score { font-size: 36px; font-weight: 700; color: var(--nw-success); line-height: 1; }

.privacy-label { font-size: 12px; color: var(--text-muted); }

.privacy-details { display: flex; flex-direction: column; gap: 8px; }

.privacy-item { display: flex; justify-content: space-between; font-size: 13px; }

.privacy-item span:first-child { color: var(--text-secondary); }

.privacy-item span:last-child { color: var(--nw-success); font-weight: 600; }



/* Points Widget */

.points-balance { text-align: center; margin-bottom: 16px; }

.points-amount { font-size: 36px; font-weight: 700; color: var(--nw-warning); }

.points-suffix { font-size: 14px; color: var(--text-muted); margin-left: 4px; }

.points-actions { display: flex; gap: 8px; margin-bottom: 16px; }

.points-actions .btn { flex: 1; justify-content: center; padding: 8px 12px; font-size: 13px; }

.points-history { border-top: 1px solid var(--border-color); padding-top: 12px; }

.points-history-title { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

.points-item { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 13px; }

.points-item-label { color: var(--text-secondary); }

.points-item-value { font-weight: 600; }

.points-item-value.positive { color: var(--nw-success); }

.points-item-value.negative { color: var(--nw-danger); }



/* Activity List */

.activity-list { display: flex; flex-direction: column; gap: 12px; }

.activity-item { display: flex; align-items: flex-start; gap: 12px; }

.activity-icon {

    width: 32px; height: 32px;

    border-radius: 8px;

    display: flex; align-items: center; justify-content: center;

    font-size: 14px;

    flex-shrink: 0;

}

.activity-icon.mail { background: rgba(59,130,246,0.1); color: #3b82f6; }

.activity-icon.points { background: rgba(249,115,22,0.1); color: #f97316; }

.activity-icon.connection { background: rgba(34,197,94,0.1); color: #22c55e; }

.activity-icon.calendar { background: rgba(168,85,247,0.1); color: #a855f7; }

.activity-content { flex: 1; }

.activity-text { font-size: 13px; margin-bottom: 2px; }

.activity-time { font-size: 11px; color: var(--text-muted); }



/* Connections List */

.connections-list { display: flex; flex-direction: column; gap: 12px; }

.connection-item { display: flex; align-items: center; gap: 12px; }

.connection-avatar {

    width: 36px; height: 36px;

    border-radius: 50%;

    display: flex; align-items: center; justify-content: center;

    font-size: 12px; font-weight: 600;

    color: white;

}

.connection-info { flex: 1; }

.connection-name { font-size: 13px; font-weight: 600; }

.connection-namespace { font-size: 11px; color: var(--text-muted); font-family: 'Fira Code', monospace; }

.connection-status { width: 8px; height: 8px; border-radius: 50%; background: var(--nw-success); }



/* Responsive */

@media (max-width: 1200px) {

    .main-grid { grid-template-columns: 1fr; }

    .stats-row { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 768px) {

    .stats-row { grid-template-columns: 1fr; }

    .dapps-grid { grid-template-columns: repeat(2, 1fr); }

    .dashboard-header { flex-direction: column; gap: 16px; }

}




/* AUTH ALERTS */

.auth-alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }

.auth-alert.error { background: rgba(239,68,68,0.1); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }

.auth-alert.success { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }



/* REGISTRATION STEPS */

.register-steps { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; }

.register-step { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 20px; font-size: 13px; color: var(--text-muted); background: var(--bg-primary); }

.register-step.active { background: var(--nw-accent); color: white; }

.register-step.complete { background: var(--nw-success); color: white; }

.register-step .step-num { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; }



/* STEP PANELS */

.step-panel { display: none; }

.step-panel.active { display: block; }



/* PKC VAULT FIELDS */

.vault-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.vault-progress { margin-bottom: 20px; }

.vault-progress-bar { height: 8px; background: var(--bg-primary); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }

.vault-progress-fill { height: 100%; background: linear-gradient(90deg, var(--nw-accent), var(--nw-success)); transition: width 0.3s; }

.vault-progress-text { font-size: 12px; color: var(--text-muted); display: flex; justify-content: space-between; }



/* PKC CHALLENGE */

.pkc-challenge { text-align: center; }

.pkc-header { margin-bottom: 24px; }

.pkc-header i { font-size: 48px; color: var(--nw-accent); margin-bottom: 12px; }

.pkc-header h2 { margin-bottom: 8px; }

.pkc-header p { color: var(--text-secondary); }

.pkc-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.pkc-option { display: flex; align-items: center; gap: 8px; padding: 12px; border: 1px solid var(--border-color); border-radius: 8px; cursor: pointer; transition: all 0.2s; }

.pkc-option:hover { border-color: var(--nw-accent); }

.pkc-option input:checked + span { color: var(--nw-accent); font-weight: 600; }

.pkc-option input { display: none; }

.pkc-option input:checked ~ span::before { content: '✓ '; color: var(--nw-success); }



/* VERIFICATION CODE INPUT */

.code-input-group { display: flex; justify-content: center; gap: 8px; margin: 24px 0; }

.code-input { width: 48px; height: 56px; text-align: center; font-size: 24px; font-weight: 600; border: 2px solid var(--border-color); border-radius: 8px; background: var(--bg-primary); }

.code-input:focus { border-color: var(--nw-accent); outline: none; }



/* VALIDATION FEEDBACK */

.validation-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }

.validation-icon.valid { color: var(--nw-success); }

.validation-icon.invalid { color: var(--nw-danger); }

.input-wrapper { position: relative; }

.input-wrapper .form-input { padding-right: 40px; }



/* USERNAME SUGGESTIONS */

.username-suggestions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.suggestion-chip { padding: 4px 12px; background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: 16px; font-size: 12px; cursor: pointer; transition: all 0.2s; }

.suggestion-chip:hover { border-color: var(--nw-accent); color: var(--nw-accent); }



/* PASSWORD STRENGTH */

.password-strength { margin-top: 8px; }

.strength-bar { height: 4px; background: var(--bg-primary); border-radius: 2px; overflow: hidden; }

.strength-fill { height: 100%; transition: all 0.3s; }

.strength-fill.weak { width: 25%; background: #ef4444; }

.strength-fill.fair { width: 50%; background: #f97316; }

.strength-fill.good { width: 75%; background: #eab308; }

.strength-fill.strong { width: 100%; background: #22c55e; }

.strength-text { font-size: 11px; margin-top: 4px; }



/* RESPONSIVE */

@media (max-width: 600px) {

    .vault-grid { grid-template-columns: 1fr; }

    .pkc-options { grid-template-columns: 1fr; }

    .register-steps { flex-wrap: wrap; }

}




/* USER DROPDOWN */

.user-menu { position: relative; }

.user-menu-trigger { display: flex; align-items: center; cursor: pointer; padding: 4px 8px; border-radius: 8px; transition: background 0.2s; }

.user-menu-trigger:hover { background: var(--bg-tertiary); }

.user-dropdown { position: absolute; top: 100%; right: 0; margin-top: 8px; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.2s; z-index: 1000; }

.user-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: var(--text-primary); text-decoration: none; transition: background 0.2s; }

.dropdown-item:hover { background: var(--bg-tertiary); }

.dropdown-item i { width: 16px; color: var(--text-muted); }

.dropdown-item.text-danger { color: #ef4444; }

.dropdown-item.text-danger i { color: #ef4444; }

.dropdown-divider { height: 1px; background: var(--border-color); margin: 4px 0; }




/* PROFILE PAGE */

.profile-page { max-width: 900px; margin: 0 auto; }

.profile-header { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; padding: 24px; background: var(--bg-secondary); border-radius: 16px; }

.profile-avatar-large { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--nw-accent), #1d4ed8); display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 600; color: white; }

.profile-info h1 { margin-bottom: 4px; }

.profile-namespace { font-size: 16px; color: var(--nw-accent); font-weight: 500; }

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

.profile-sections { display: flex; flex-direction: column; gap: 24px; }

.profile-section { background: var(--bg-secondary); border-radius: 16px; padding: 24px; }

.profile-section h2 { font-size: 18px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

.profile-section h2 i { color: var(--nw-accent); }

.profile-form { display: flex; flex-direction: column; gap: 16px; }

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

.stat-item { text-align: center; padding: 16px; background: var(--bg-tertiary); border-radius: 12px; }

.stat-value { display: block; font-size: 24px; font-weight: 700; color: var(--nw-accent); }

.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; }



/* SETTINGS PAGE */

.settings-page { max-width: 800px; margin: 0 auto; }

.settings-page > h1 { margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }

.settings-page > h1 i { color: var(--nw-accent); }

.settings-sections { display: flex; flex-direction: column; gap: 24px; }

.settings-section { background: var(--bg-secondary); border-radius: 16px; padding: 24px; }

.settings-section h2 { font-size: 16px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: var(--text-secondary); }

.settings-section h2 i { color: var(--nw-accent); width: 20px; }

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

.setting-item:last-child { border-bottom: none; padding-bottom: 0; }

.setting-item:first-of-type { padding-top: 0; }

.setting-info h3 { font-size: 15px; margin-bottom: 4px; }

.setting-info p { font-size: 13px; color: var(--text-muted); }

.danger-zone { border: 1px solid rgba(239,68,68,0.3); }

.danger-zone h2 { color: #ef4444; }

.danger-zone h2 i { color: #ef4444; }

.btn-danger { background: #ef4444; color: white; border: none; }

.btn-danger:hover { background: #dc2626; }



/* TOGGLE SWITCH */

.toggle { position: relative; display: inline-block; width: 50px; height: 26px; }

.toggle input { opacity: 0; width: 0; height: 0; }

.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: var(--bg-tertiary); border-radius: 26px; transition: 0.3s; }

.toggle-slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.3s; }

.toggle input:checked + .toggle-slider { background: var(--nw-accent); }

.toggle input:checked + .toggle-slider:before { transform: translateX(24px); }



/* BADGES */

.badge { padding: 4px 10px; border-radius: 12px; font-size: 12px; font-weight: 500; }

.badge-muted { background: var(--bg-tertiary); color: var(--text-muted); }



/* RESPONSIVE */

@media (max-width: 600px) {

    .profile-header { flex-direction: column; text-align: center; }

    .stats-grid { grid-template-columns: 1fr; }

    .setting-item { flex-direction: column; align-items: flex-start; gap: 12px; }

}




/* MODALS */

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 9999; }

.modal-content { background: var(--bg-secondary); border-radius: 16px; padding: 24px; max-width: 450px; width: 90%; max-height: 90vh; overflow-y: auto; }

.modal-content.modal-lg { max-width: 600px; }

.modal-content h2 { margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

.modal-content h2 i { color: var(--nw-accent); }

.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 20px; }



/* DEVICE LIST */

.device-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }

.device-item { display: flex; align-items: center; justify-content: space-between; padding: 12px; background: var(--bg-tertiary); border-radius: 8px; }

.device-info strong { display: block; margin-bottom: 4px; }

.device-info p { font-size: 12px; color: var(--text-muted); margin: 0; }

.badge-success { background: var(--nw-success); color: white; margin-left: 8px; }

.btn-sm { padding: 6px 12px; font-size: 12px; }




/* ===== TRUST & VALUE PAGE ===== */

.trust-page {

    max-width: 1200px;

    margin: 0 auto;

    padding: 24px;

}

.trust-page .page-header { margin-bottom: 24px; }

.trust-page .page-header h1 { font-size: 24px; font-weight: 600; margin-bottom: 4px; }

.trust-page .page-header p { color: var(--text-secondary); font-size: 14px; }

.trust-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }

.trust-grid .loading-state { grid-column: span 12; text-align: center; padding: 60px; color: var(--text-muted); }



.trust-card { grid-column: span 6; }

.points-card { grid-column: span 6; }

.connections-card, .dapps-card, .activity-card { grid-column: span 4; }



.trust-score-row { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 16px; }

.trust-score-big { font-size: 56px; font-weight: 700; line-height: 1; }

.trust-score-max { font-size: 24px; color: var(--text-muted); margin-bottom: 10px; }



.tier-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 24px; font-size: 14px; font-weight: 500; margin-bottom: 24px; }

.tier-new { background: rgba(148,163,184,0.15); color: #94a3b8; }

.tier-growing { background: rgba(16,185,129,0.15); color: #10b981; }

.tier-established { background: rgba(59,130,246,0.15); color: #3b82f6; }

.tier-trusted { background: rgba(139,92,246,0.15); color: #8b5cf6; }

.tier-pillar { background: rgba(245,158,11,0.15); color: #f59e0b; }



.trust-progress { height: 10px; background: var(--bg-primary); border-radius: 999px; overflow: hidden; margin-bottom: 12px; }

.trust-progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, #0ea5e9, #38bdf8); transition: width 0.8s ease; }

.tier-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); margin-bottom: 28px; }



.factors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.factor-item { background: var(--bg-primary); padding: 14px 16px; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; }

.factor-label { font-size: 13px; color: var(--text-secondary); }

.factor-value { font-size: 15px; font-weight: 600; }



.points-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }

.points-big { font-size: 48px; font-weight: 700; }

.points-label { font-size: 16px; color: var(--text-secondary); }



.level-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 24px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 24px; }

.level-bronze { background: rgba(205,127,50,0.15); color: #cd7f32; }

.level-silver { background: rgba(192,192,192,0.15); color: #a8a8a8; }

.level-gold { background: rgba(255,215,0,0.15); color: #d4af00; }

.level-platinum { background: rgba(229,228,226,0.15); color: #b8b8b8; }

.level-diamond { background: rgba(185,242,255,0.15); color: #22d3ee; }



.level-progress { margin-bottom: 28px; }

.level-bar { height: 8px; background: var(--bg-primary); border-radius: 999px; overflow: hidden; margin-bottom: 8px; }

.level-fill { height: 100%; border-radius: 999px; transition: width 0.6s ease; }

.level-markers { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-muted); }



.stats-row { display: flex; gap: 16px; }

.stat-box { flex: 1; text-align: center; padding: 16px; background: var(--bg-primary); border-radius: 10px; }

.stat-box .stat-value { font-size: 20px; font-weight: 600; margin-bottom: 4px; }

.stat-box .stat-label { font-size: 11px; color: var(--text-secondary); }



.big-stat { font-size: 42px; font-weight: 700; margin-bottom: 4px; }

.big-stat-label { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }



.quality-row { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--bg-primary); border-radius: 10px; }

.quality-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(14,165,233,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; }

.quality-text-label { font-size: 12px; color: var(--text-secondary); }

.quality-text-value { font-size: 18px; font-weight: 600; color: #0ea5e9; }



.dapps-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

.dapp-box { width: 44px; height: 44px; background: var(--bg-primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; transition: transform 0.2s, background 0.2s; }

.dapp-box:hover { background: var(--bg-hover, #334155); transform: translateY(-2px); }



.activity-list { display: flex; flex-direction: column; gap: 10px; max-height: 280px; overflow-y: auto; }

.activity-row { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--bg-primary); border-radius: 10px; }

.activity-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }

.activity-icon.positive { background: rgba(16,185,129,0.15); }

.activity-icon.negative { background: rgba(239,68,68,0.15); }

.activity-info { flex: 1; }

.activity-desc { font-size: 13px; margin-bottom: 2px; }

.activity-time { font-size: 11px; color: var(--text-muted); }

.activity-amount { font-size: 14px; font-weight: 600; }

.activity-amount.positive { color: #10b981; }

.activity-amount.negative { color: #ef4444; }

.empty-state { color: var(--text-muted); text-align: center; padding: 24px; font-size: 13px; }



@media (max-width: 768px) {

    .trust-grid { gap: 16px; }

    .trust-card, .points-card, .connections-card, .dapps-card, .activity-card { grid-column: span 12; }

    .factors-grid { grid-template-columns: 1fr; }

    .stats-row { flex-direction: column; }

}




/* ===== TRUST PAGE ENHANCEMENTS ===== */

.trust-page .card {

    background: var(--bg-card);

    border: 1px solid var(--border-color);

    border-radius: 12px;

    padding: 24px;

    box-shadow: var(--shadow-sm);

    transition: box-shadow 0.2s ease, border-color 0.2s ease;

}

.trust-page .card:hover {

    box-shadow: var(--shadow-md);

    border-color: var(--nw-accent);

}

.trust-page .card-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;

    padding-bottom: 12px;

    border-bottom: 1px solid var(--border-color);

}

.trust-page .card-title {

    font-size: 14px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    color: var(--text-secondary);

}

.trust-page .card-icon {

    font-size: 18px;

    color: var(--nw-accent);

    opacity: 0.8;

}

.trust-score-big {

    font-size: 64px;

    font-weight: 700;

    line-height: 1;

    background: linear-gradient(135deg, var(--nw-accent), var(--nw-accent-light));

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}

.trust-score-max {

    font-size: 28px;

    color: var(--text-muted);

    margin-bottom: 8px;

    font-weight: 300;

}

.points-big {

    font-size: 56px;

    font-weight: 700;

    background: linear-gradient(135deg, #f59e0b, #fbbf24);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}

.tier-badge, .level-badge {

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    font-size: 12px;

}

.trust-progress {

    height: 8px;

    background: var(--bg-primary);

    border-radius: 999px;

    overflow: hidden;

    margin-bottom: 12px;

    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);

}

.trust-progress-fill {

    height: 100%;

    border-radius: 999px;

    background: linear-gradient(90deg, var(--nw-accent), var(--nw-accent-light));

    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);

}

.factors-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

}

.factor-item {

    background: var(--bg-primary);

    padding: 14px 16px;

    border-radius: 8px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border: 1px solid transparent;

    transition: border-color 0.2s;

}

.factor-item:hover {

    border-color: var(--border-color);

}

.factor-label {

    font-size: 12px;

    color: var(--text-secondary);

}

.factor-value {

    font-size: 14px;

    font-weight: 600;

    font-family: 'Fira Code', monospace;

    color: var(--text-primary);

}

.big-stat {

    font-size: 48px;

    font-weight: 700;

    color: var(--text-primary);

    line-height: 1.1;

}

.big-stat-label {

    font-size: 13px;

    color: var(--text-secondary);

    margin-bottom: 20px;

}

.quality-row {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px;

    background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(56,189,248,0.05));

    border-radius: 10px;

    border: 1px solid rgba(14,165,233,0.2);

}

.quality-icon {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--nw-accent), var(--nw-accent-light));

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 18px;

}

.quality-text-value {

    font-size: 20px;

    font-weight: 700;

    color: var(--nw-accent);

    font-family: 'Fira Code', monospace;

}

.dapps-icons {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

}

.dapp-box {

    width: 48px;

    height: 48px;

    background: var(--bg-primary);

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    color: var(--nw-accent);

    border: 1px solid var(--border-color);

    transition: all 0.2s ease;

}

.dapp-box:hover {

    background: var(--nw-accent);

    color: white;

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(61,122,181,0.3);

}

.stats-row {

    display: flex;

    gap: 12px;

}

.stat-box {

    flex: 1;

    text-align: center;

    padding: 18px 12px;

    background: var(--bg-primary);

    border-radius: 10px;

    border: 1px solid var(--border-color);

}

.stat-box .stat-value {

    font-size: 22px;

    font-weight: 700;

    color: var(--text-primary);

    font-family: 'Fira Code', monospace;

}

.stat-box .stat-label {

    font-size: 10px;

    color: var(--text-muted);

    text-transform: uppercase;

    letter-spacing: 0.05em;

    margin-top: 4px;

}

.level-bar {

    height: 6px;

    background: var(--bg-primary);

    border-radius: 999px;

    overflow: hidden;

    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);

}

.activity-row {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 14px;

    background: var(--bg-primary);

    border-radius: 10px;

    border: 1px solid transparent;

    transition: border-color 0.2s;

}

.activity-row:hover {

    border-color: var(--border-color);

}

.activity-icon {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

}

.activity-icon.positive {

    background: rgba(16,185,129,0.15);

    color: #10b981;

}

.activity-icon.negative {

    background: rgba(239,68,68,0.15);

    color: #ef4444;

}

.empty-state {

    color: var(--text-muted);

    text-align: center;

    padding: 30px;

    font-size: 13px;

    font-style: italic;

}





    .dashboard-stats { grid-template-columns: 1fr; }

}




/* DASHBOARD LAYOUT */

.dashboard-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }

.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.dashboard-main { display: flex; flex-direction: column; gap: 24px; }



@media (max-width: 1200px) {

    .dashboard-stats { grid-template-columns: repeat(2, 1fr); }

    .dashboard-grid { grid-template-columns: 1fr; }

}

@media (max-width: 768px) {

    .dashboard-stats { grid-template-columns: 1fr; }

}




/* LANDING PAGE */

.landing-content { max-width: 900px; margin: 0 auto; padding: 40px 20px; }

.hero { text-align: center; margin-bottom: 60px; }

.hero h1 { font-size: 42px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }

.hero p { font-size: 18px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 30px; }

.hero-stats { display: flex; justify-content: center; gap: 60px; }

.hero-stats .stat { text-align: center; }

.hero-stats .stat-number { font-size: 36px; font-weight: 700; color: var(--nw-accent); display: block; }

.hero-stats .stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; }

.features { margin-top: 60px; }

.features h2 { text-align: center; font-size: 28px; margin-bottom: 40px; color: var(--text-primary); }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature { text-align: center; padding: 24px; background: var(--bg-secondary); border-radius: 12px; border: 1px solid var(--border-color); }

.feature i { font-size: 32px; color: var(--nw-accent); margin-bottom: 16px; }

.feature h3 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }

.feature p { font-size: 14px; color: var(--text-secondary); }

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } .hero-stats { flex-direction: column; gap: 20px; } }



/* INFO PAGES */

.info-page { max-width: 800px; margin: 0 auto; padding: 40px 20px; }

.info-page h1 { font-size: 32px; font-weight: 700; color: var(--text-primary); margin-bottom: 24px; }

.info-page h1 i { margin-right: 12px; color: var(--nw-accent); }

.info-card { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: 12px; padding: 32px; margin-bottom: 24px; }

.info-card h2 { font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 16px; }

.info-card p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }

.info-card ul { color: var(--text-secondary); line-height: 1.8; padding-left: 20px; }




/* Registration field status */

.field-status { margin-top: 6px; font-size: 13px; }

.status-checking { color: var(--text-muted); }

.status-success { color: #22c55e; }

.status-error { color: #ef4444; }

.field-status i { margin-right: 6px; }



/* Step indicator */

.step-indicator { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; }

.step { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 14px; }

.step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-primary); border: 2px solid var(--border-color); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; }

.step.active .step-num { background: var(--nw-accent); border-color: var(--nw-accent); color: white; }

.step.active { color: var(--text-primary); font-weight: 500; }

.step.completed .step-num { background: #22c55e; border-color: #22c55e; color: white; }



/* UNE domain input */

.une-domain-input { display: flex; align-items: center; }

.une-domain-input .form-input { border-radius: 8px 0 0 8px; }

.une-suffix { background: var(--bg-primary); border: 1px solid var(--border-color); border-left: none; padding: 12px 16px; border-radius: 0 8px 8px 0; color: var(--text-muted); font-weight: 500; }



/* Security intro */

.security-intro { color: var(--text-secondary); margin-bottom: 20px; text-align: center; }

